diff options
author | dancer <dancer> | 2004-07-28 23:39:24 +0000 |
---|---|---|
committer | dancer <dancer> | 2004-07-28 23:39:24 +0000 |
commit | e1f7eaa51635f5a53da343bce05c2a6826ab9e27 (patch) | |
tree | b7323e0d8ba0e506a4c34ef84ca5183aaead25bb /pbuilder-checkparams | |
parent | c7c59cb36ac720cacd79a9413e8d1747991865f7 (diff) | |
download | pbuilder-e1f7eaa51635f5a53da343bce05c2a6826ab9e27.tar pbuilder-e1f7eaa51635f5a53da343bce05c2a6826ab9e27.tar.gz |
+
+ * debian/pbuilder-uml.files: add pbuilder-uml-checkparams
+
+ * Makefile: add pbuilder-uml-checkparams
+
+ * pdebuild-user-mode-linux.1: update manual to reflect
+ current reality of pdebuild-user-mode-linux. It was originally just a
+ copy of pdebuild manpage.
+
+ * pbuilder-checkparams: shift around debootstrapopts parameter
+ processing out of pdebuild options; it doesn't belong there.
+
+ * pdebuild-user-mode-linux: Call pbuilder-uml-checkparams to
+ parse commands in UML way, not pbuilder way.
+ * pbuilder-uml-checkparams: Move command-line parser to here
+ * pbuilder-user-mode-linux: Move command-line parser out
+
Diffstat (limited to 'pbuilder-checkparams')
-rwxr-xr-x | pbuilder-checkparams | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/pbuilder-checkparams b/pbuilder-checkparams index 00adfbf..40797ad 100755 --- a/pbuilder-checkparams +++ b/pbuilder-checkparams @@ -156,6 +156,11 @@ while [ -n "$1" ]; do BINDMOUNTS="${BINDMOUNTS} $2" shift; shift; ;; + --debootstrapopts) + # specify this option to set --variant=buildd value to debootstrap + DEBOOTSTRAPOPTS[${#DEBOOTSTRAPOPTS[@]}]="$2"; + shift; shift; + ;; ## pdebuild option --auto-debsign) AUTO_DEBSIGN="yes" @@ -173,11 +178,6 @@ while [ -n "$1" ]; do USE_PDEBUILD_INTERNAL=yes; shift; ;; - --debootstrapopts) - # specify this option to set --variant=buildd value to debootstrap - DEBOOTSTRAPOPTS[${#DEBOOTSTRAPOPTS[@]}]="$2"; - shift; shift; - ;; ## internal options. --internal-chrootexec) # specify custom chrootexec function -- this is internal debugging function |