aboutsummaryrefslogtreecommitdiffstats
path: root/Tools
diff options
context:
space:
mode:
authorlinimon <linimon@FreeBSD.org>2006-02-02 08:40:37 +0800
committerlinimon <linimon@FreeBSD.org>2006-02-02 08:40:37 +0800
commit44d892d830e21b5e87cedece5e93e79857322f5c (patch)
treedf3a47c9068632a030cbb56d9a1db46426fae231 /Tools
parent74698039202adb7e64a5df5292b2efa9436f72bb (diff)
downloadfreebsd-ports-graphics-44d892d830e21b5e87cedece5e93e79857322f5c.tar.gz
freebsd-ports-graphics-44d892d830e21b5e87cedece5e93e79857322f5c.tar.zst
freebsd-ports-graphics-44d892d830e21b5e87cedece5e93e79857322f5c.zip
Fix bogus comments. No code change.
Diffstat (limited to 'Tools')
-rw-r--r--Tools/make_index10
1 files changed, 5 insertions, 5 deletions
diff --git a/Tools/make_index b/Tools/make_index
index d5b5d9e3fc8..99757659278 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;