diff options
author | Satoshi Asami <asami@FreeBSD.org> | 1999-05-05 07:25:57 +0000 |
---|---|---|
committer | Satoshi Asami <asami@FreeBSD.org> | 1999-05-05 07:25:57 +0000 |
commit | 60251381ce6efc66222ae542566c8bd026758db1 (patch) | |
tree | cfc0f4a9175b1c6e77d3f5bef18d3e58cda68a5b /Tools/make_index | |
parent | e23ea932879d6de5ab462d6c20914e0ec7e031a2 (diff) | |
download | ports-60251381ce6efc66222ae542566c8bd026758db1.tar.gz ports-60251381ce6efc66222ae542566c8bd026758db1.zip |
Notes
Diffstat (limited to 'Tools/make_index')
-rw-r--r-- | Tools/make_index | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Tools/make_index b/Tools/make_index index 7465517fb55b..153fb6b3b099 100644 --- a/Tools/make_index +++ b/Tools/make_index @@ -1,6 +1,6 @@ #!/usr/bin/perl # -# $Id: make_index,v 1.4 1999/03/13 04:25:21 scrappy Exp $ +# $Id: make_index,v 1.5 1999/04/28 06:20:23 asami Exp $ # # Written to speed-up INDEX file generation. The new scheme # basically visits each port once and writes out each port's @@ -83,8 +83,8 @@ while (<>) { my $pkg = { 'bdep' => [split(/ /, $f[7])], 'rdep' => [split(/ /, $f[8])], - 'text' => join('|', splice(@f, 0, 7)), - 'rest' => join('|', splice(@f, 9)) + 'rest' => join('|', splice(@f, 9)), + 'text' => join('|', splice(@f, 0, 7)) }; $index{$name} = $pkg; |