diff options
author | dancer <dancer> | 2005-06-04 03:13:28 +0000 |
---|---|---|
committer | dancer <dancer> | 2005-06-04 03:13:28 +0000 |
commit | 4e9f6235067ad2f9b7b0d0810dbd38d449328b0d (patch) | |
tree | 04fe599eba4206a0f5564e5c7ed09e3b45474a57 /pbuilder-checkparams | |
parent | 4babd977aaa314d2417d4178788d3bf4c2acf247 (diff) | |
download | pbuilder-4e9f6235067ad2f9b7b0d0810dbd38d449328b0d.tar pbuilder-4e9f6235067ad2f9b7b0d0810dbd38d449328b0d.tar.gz |
pdebuild now checks for unsupported options.
+ * debian/pbuilder-uml.files: move to uml.
+ * Makefile: install
+ * pdebuild-user-mode-linux: use pdebuild-uml-checkparams
+
+ * pdebuild-uml-checkparams: add --debsign-k
+
+ * pbuilder-uml-checkparams: pdebuild options remove.
+
+ * pdebuild-uml-checkparams: --buildresult
+
+ * pdebuild.1: add --logfile option to documentation.
+
+ * pdebuild-checkparams: --logfile option implemented for pdebuild.
+
+ * Makefile (install): install
+
+ * pdebuild: use pdebuild-checkparams instead.
+
+ * pbuilder-checkparams: split
+ * pdebuild-checkparams: new file.
+
Diffstat (limited to 'pbuilder-checkparams')
-rwxr-xr-x | pbuilder-checkparams | 23 |
1 files changed, 1 insertions, 22 deletions
diff --git a/pbuilder-checkparams b/pbuilder-checkparams index 1107efb..2bdf33d 100755 --- a/pbuilder-checkparams +++ b/pbuilder-checkparams @@ -183,27 +183,6 @@ while [ -n "$1" ]; do DEBOOTSTRAPOPTS[${#DEBOOTSTRAPOPTS[@]}]="$2"; shift; shift; ;; - ## pdebuild option - --auto-debsign) - AUTO_DEBSIGN="yes" - shift; - ;; - --debsign-k) - DEBSIGN_KEYID="$2" - shift; shift; - ;; - --buildsourceroot*) - BUILDSOURCEROOTCMD="$2"; - shift; shift; - ;; - --pbuilderroot*) - PBUILDERROOTCMD="$2"; - shift; shift; - ;; - --use-pdebuild-internal) - USE_PDEBUILD_INTERNAL=yes; - shift; - ;; --save-after-login|--save-after-exec) SAVE_AFTER_LOGIN=yes; shift; @@ -257,7 +236,7 @@ if [ -z "${CHROOTEXEC}" ]; then CHROOTEXEC="chroot $BUILDPLACE " fi -# handle 'experimental' specially. +# handle 'experimental' specially. -- required for raw pbuilder (create/update) only. if [ "$DISTRIBUTION" = "experimental" ]; then DISTRIBUTION="sid" EXPERIMENTAL="true" |