summaryrefslogtreecommitdiff
path: root/bootstrap
diff options
context:
space:
mode:
authorrillig <rillig@pkgsrc.org>2006-10-13 19:09:53 +0000
committerrillig <rillig@pkgsrc.org>2006-10-13 19:09:53 +0000
commitd7aa920f48c909c6aaaf78772ecbfbadd0e43e23 (patch)
treee533354df3ebe15b62146e469942d75abfd451e4 /bootstrap
parentc77c8482dac83abce83b999726d5813d069ebfa3 (diff)
downloadpkgsrc-d7aa920f48c909c6aaaf78772ecbfbadd0e43e23.tar.gz
Added --unprivileged as an alias for --ignore-user-check, aligning with
the wording in many other places. Also added --quiet to the usage text, which I had forgotten before.
Diffstat (limited to 'bootstrap')
-rwxr-xr-xbootstrap/bootstrap7
1 files changed, 4 insertions, 3 deletions
diff --git a/bootstrap/bootstrap b/bootstrap/bootstrap
index 6cd2619c75e..df6ce2338ad 100755
--- a/bootstrap/bootstrap
+++ b/bootstrap/bootstrap
@@ -1,6 +1,6 @@
#! /bin/sh
-# $NetBSD: bootstrap,v 1.85 2006/10/02 16:26:54 rillig Exp $
+# $NetBSD: bootstrap,v 1.86 2006/10/13 19:09:53 rillig Exp $
#
#
# Copyright (c) 2001-2002 Alistair G. Crooks. All rights reserved.
@@ -62,10 +62,11 @@ usage="Usage: $0 "'
[ --varbase <varbase> ]
[ --fetch-cmd <ftp command> ]
[ --ignore-case-check ]
- [ --ignore-user-check ]
+ [ --unprivileged | --ignore-user-check ]
[ --preserve-path ]
[ --compiler <compiler> ]
[ --full ]
+ [ --quiet ]
[ --help ]'
# this replicates some of the logic in bsd.prefs.mk. until
@@ -277,7 +278,7 @@ while [ $# -gt 0 ]; do
--compiler=*) compiler=`get_optarg "$1"` ;;
--compiler) compiler="$2"; shift ;;
--ignore-case-check) ignorecasecheck=yes ;;
- --ignore-user-check) ignoreusercheck=yes ;;
+ --unprivileged | --ignore-user-check) ignoreusercheck=yes ;;
--preserve-path) preserve_path=yes ;;
--full) full=yes ;;
--quiet) quiet=yes ;;