pkgsrc-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[pkgsrc/trunk]: pkgsrc/bootstrap Added --unprivileged as an alias for --ignor...



details:   https://anonhg.NetBSD.org/pkgsrc/rev/aca1ca046c3e
branches:  trunk
changeset: 520013:aca1ca046c3e
user:      rillig <rillig%pkgsrc.org@localhost>
date:      Fri Oct 13 19:09:53 2006 +0000

description:
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:

 bootstrap/bootstrap |  7 ++++---
 1 files changed, 4 insertions(+), 3 deletions(-)

diffs (33 lines):

diff -r 730714cae003 -r aca1ca046c3e bootstrap/bootstrap
--- a/bootstrap/bootstrap       Fri Oct 13 19:02:46 2006 +0000
+++ b/bootstrap/bootstrap       Fri Oct 13 19:09:53 2006 +0000
@@ -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 @@
     [ --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 @@
        --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 ;;



Home | Main Index | Thread Index | Old Index