aboutsummaryrefslogtreecommitdiff
path: root/pbuilder-checkparams
diff options
context:
space:
mode:
authordancer <dancer>2002-10-16 11:50:56 +0000
committerdancer <dancer>2002-10-16 11:50:56 +0000
commitda52e3f7b2ed0fc9dc26cca43548744650682811 (patch)
tree4b246f93db92974c6ae581f070ee4ae9ac3e10cd /pbuilder-checkparams
parenta34bead38da82a3153ce507d6ca0206cfbdff989 (diff)
downloadpbuilder-da52e3f7b2ed0fc9dc26cca43548744650682811.tar
pbuilder-da52e3f7b2ed0fc9dc26cca43548744650682811.tar.gz
+ * debian/README.Debian: update everything.
+ + * pbuilderrc.5: update doc to mention --override-config + + * pbuilder.8: update doc to mention that sid/sarge/woody are supported. + update doc to mention --override-config + + * pbuilder-modules: update the help text a little bit. + + * pbuilder-checkparams (OVERRIDE_APTLINES): new option --override-config + to install new aptlines. + + * pbuilder-modules (extractbuildplace): Check that OVERRIDE_APTLINES is not set, + and rewrite apt lines. +
Diffstat (limited to 'pbuilder-checkparams')
-rwxr-xr-xpbuilder-checkparams5
1 files changed, 5 insertions, 0 deletions
diff --git a/pbuilder-checkparams b/pbuilder-checkparams
index 9289af9..2ca336d 100755
--- a/pbuilder-checkparams
+++ b/pbuilder-checkparams
@@ -23,6 +23,7 @@
#default value for this option is !empty!
INTERNAL_BUILD_UML=""
CHROOTEXEC=""
+OVERRIDE_APTLINES="no"
while [ -n "$1" ]; do
case "$1" in
@@ -118,6 +119,10 @@ while [ -n "$1" ]; do
--help)
showhelp
;;
+ --override-config)
+ OVERRIDE_APTLINES="yes"
+ shift;
+ ;;
--) # this is an empty option, to no longer process.
shift;
break;