diff options
author | dancer <dancer> | 2002-10-16 11:50:56 +0000 |
---|---|---|
committer | dancer <dancer> | 2002-10-16 11:50:56 +0000 |
commit | da52e3f7b2ed0fc9dc26cca43548744650682811 (patch) | |
tree | 4b246f93db92974c6ae581f070ee4ae9ac3e10cd /pbuilder-checkparams | |
parent | a34bead38da82a3153ce507d6ca0206cfbdff989 (diff) | |
download | pbuilder-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-x | pbuilder-checkparams | 5 |
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; |