diff options
author | dancer <dancer> | 2001-11-03 11:04:18 +0000 |
---|---|---|
committer | dancer <dancer> | 2001-11-03 11:04:18 +0000 |
commit | 830b7130fc989019bb4c59616ee311597147ea5c (patch) | |
tree | 8277539152daaaa226fdaa4a1b8930e2d91341af | |
parent | dfb6a00a0bd2adec2a6a2158e442a14dab36011f (diff) | |
download | pbuilder-830b7130fc989019bb4c59616ee311597147ea5c.tar pbuilder-830b7130fc989019bb4c59616ee311597147ea5c.tar.gz |
fixes, and improvements
-rwxr-xr-x | pbuilder-checkparams | 4 | ||||
-rw-r--r-- | pdebuild.1 | 12 |
2 files changed, 14 insertions, 2 deletions
diff --git a/pbuilder-checkparams b/pbuilder-checkparams index 95728bc..01fb9b9 100755 --- a/pbuilder-checkparams +++ b/pbuilder-checkparams @@ -76,6 +76,10 @@ while [ -n "$1" ]; do --help) showhelp ;; + --) # this is an empty option, to no longer process. + shift; + break; + ;; --*) echo "Error: Unknown option [$1] was specified " >&2 exit 1; @@ -15,14 +15,22 @@ invoked. .SH OPTIONS .TP .BI "--buildsourceroot [" "fakeroot" "]" -The command to gain root privilege for +The command used to gain root privilege for invoking dpkg-buildpackage .TP .BI "--pbuilderroot [" "sudo" "]" -The command to gain root privilege for +The command used to gain root privilege for invoking pbuilder. + +.TP +.BI "-- [" "pbuilder options" "]" + +After the +.B "--" +symbol, an arbitrary number of pbuilder options can be specified. + .SH "FILES" .TP .I "/etc/pbuilderrc" |