diff options
author | Satoshi Asami <asami@FreeBSD.org> | 1999-07-30 06:53:00 +0000 |
---|---|---|
committer | Satoshi Asami <asami@FreeBSD.org> | 1999-07-30 06:53:00 +0000 |
commit | 79ab397bcaab172c7b822fd77efe1c01df0e4f8a (patch) | |
tree | 9c7d14a947b48542f9a028833779e7cdec09d006 /Tools | |
parent | 9c3aa283bc147919025e206e62e96bd4f4417aae (diff) | |
download | ports-79ab397bcaab172c7b822fd77efe1c01df0e4f8a.tar.gz ports-79ab397bcaab172c7b822fd77efe1c01df0e4f8a.zip |
Notes
Diffstat (limited to 'Tools')
-rwxr-xr-x | Tools/portbuild/scripts/makeindex | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/Tools/portbuild/scripts/makeindex b/Tools/portbuild/scripts/makeindex index 859e5e0ecdef..a2630e65f43e 100755 --- a/Tools/portbuild/scripts/makeindex +++ b/Tools/portbuild/scripts/makeindex @@ -1,5 +1,9 @@ #!/bin/sh # usage: $0 branch + +# -j# to make index +INDEXJOBS=4 + usage () { echo "usage: makeindex branch" exit 1 @@ -40,4 +44,5 @@ export PACKAGE_BUILDING=t export PARALLEL_PACKAGE_BUILD=t export NO_RESTRICTED=t #export FOR_CDROM=t -make index +#export INDEX_NOSORT=t +make -j${INDEXJOBS} index |