Skip to content

Commit

Permalink
- document get_build and get_deps difference
Browse files Browse the repository at this point in the history
  • Loading branch information
adrianschroeter committed Apr 10, 2012
1 parent 1fb4785 commit 507c2f7
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions Build.pm
Expand Up @@ -365,6 +365,7 @@ sub do_subst_vers {
return @res;
}

# Delivers all packages which get used for building
sub get_build {
my ($config, $subpacks, @deps) = @_;
my @ndeps = grep {/^-/} @deps;
Expand All @@ -384,6 +385,7 @@ sub get_build {
return @deps;
}

# Delivers all packages which shall have an influence to other package builds (get_build reduced by support packages)
sub get_deps {
my ($config, $subpacks, @deps) = @_;
my @ndeps = grep {/^-/} @deps;
Expand Down

0 comments on commit 507c2f7

Please sign in to comment.