diff options
author | Mark Linimon <linimon@FreeBSD.org> | 2006-02-02 00:40:37 +0000 |
---|---|---|
committer | Mark Linimon <linimon@FreeBSD.org> | 2006-02-02 00:40:37 +0000 |
commit | f7200095a8d490c2226ad235f8071c5c6657b2ac (patch) | |
tree | 182c0ca099b0f546ef0e2a4b894143ea1a615d59 /Tools/make_index | |
parent | 37863a6572716e2286525dbc997dcc839f550a59 (diff) | |
download | ports-f7200095a8d490c2226ad235f8071c5c6657b2ac.tar.gz ports-f7200095a8d490c2226ad235f8071c5c6657b2ac.zip |
Fix bogus comments. No code change.
Notes
Notes:
svn path=/head/; revision=155040
Diffstat (limited to 'Tools/make_index')
-rw-r--r-- | Tools/make_index | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/Tools/make_index b/Tools/make_index index d5b5d9e3fc8c..997576592789 100644 --- a/Tools/make_index +++ b/Tools/make_index @@ -127,27 +127,27 @@ while (<>) { # For each port perform the mapping between directory and pkgnames. foreach $name (keys %index) { my $pkg = $index{$name}; - # first the build dependencies + # first the extract dependencies if (@{$pkg->{edep}}) { my @edep = map { by_path($_, $name) } @{$pkg->{edep}}; $pkg->{edep} = \@edep; } - # + # then the patch dependencies if (@{$pkg->{pdep}}) { my @pdep = map { by_path($_, $name) } @{$pkg->{pdep}}; $pkg->{pdep} = \@pdep; } - # first the build dependencies + # then the fetch dependencies if (@{$pkg->{fdep}}) { my @fdep = map { by_path($_, $name) } @{$pkg->{fdep}}; $pkg->{fdep} = \@fdep; } - # first the build dependencies + # then the build dependencies if (@{$pkg->{bdep}}) { my @bdep = map { by_path($_, $name) } @{$pkg->{bdep}}; $pkg->{bdep} = \@bdep; } - # first the build dependencies + # then the run dependencies if (@{$pkg->{rdep}}) { my @rdep = map { by_path($_, $name) } @{$pkg->{rdep}}; $pkg->{rdep} = \@rdep; |