summaryrefslogtreecommitdiff
path: root/Tools/make_index
diff options
context:
space:
mode:
authorSatoshi Asami <asami@FreeBSD.org>1999-05-05 07:25:57 +0000
committerSatoshi Asami <asami@FreeBSD.org>1999-05-05 07:25:57 +0000
commit60251381ce6efc66222ae542566c8bd026758db1 (patch)
treecfc0f4a9175b1c6e77d3f5bef18d3e58cda68a5b /Tools/make_index
parentUpdate to version 2.0b2. (diff)
Correctly deal with the http field in index lines.
Submitted by: steve
Notes
Notes: svn path=/head/; revision=18488
Diffstat (limited to '')
-rw-r--r--Tools/make_index6
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;