summaryrefslogtreecommitdiffstats
path: root/scripts/makeworld
diff options
context:
space:
mode:
Diffstat (limited to 'scripts/makeworld')
-rwxr-xr-xscripts/makeworld10
1 files changed, 5 insertions, 5 deletions
diff --git a/scripts/makeworld b/scripts/makeworld
index 4591c145..3c523f9c 100755
--- a/scripts/makeworld
+++ b/scripts/makeworld
@@ -1,16 +1,16 @@
#!/bin/bash
toplevel=`pwd`
-version="2.3"
+version="2.3.1"
usage() {
echo "makeworld version $version"
echo "usage: $0 [options] <destdir> <category> [category] ..."
echo "options:"
echo " -c, --clean Clean up work files after build"
- echo " -d, --syncdeps Install missing dependencies with pacman"
+ echo " -s, --syncdeps Install missing dependencies with pacman"
echo " -b, --builddeps Build missing dependencies from source"
- echo " -n, --nodeps Skip all dependency checks"
+ echo " -d, --nodeps Skip all dependency checks"
echo " -i, --install Install package after successful build"
echo " -f, --force Overwrite existing packages"
echo " -h, --help This help"
@@ -35,13 +35,13 @@ for arg in $*; do
-i|--install)
MAKEPKG_OPTS="$MAKEPKG_OPTS -i"
;;
- -d|--syncdeps)
+ -s|--syncdeps)
MAKEPKG_OPTS="$MAKEPKG_OPTS -d"
;;
-b|--builddeps)
MAKEPKG_OPTS="$MAKEPKG_OPTS -b"
;;
- -n|--nodeps)
+ -d|--nodeps)
MAKEPKG_OPTS="$MAKEPKG_OPTS -n"
;;
-f|--force)