diff options
author | dancer <dancer> | 2002-12-12 09:30:48 +0000 |
---|---|---|
committer | dancer <dancer> | 2002-12-12 09:30:48 +0000 |
commit | 691e978bfb9e1d8498b82acc319bb18f57c3d532 (patch) | |
tree | f54fc2e1e5ac8aac493031b85b23eda944eafdd2 /pbuilder-checkparams | |
parent | 338d228d31541bdc2cdb0db373d21ee52e137607 (diff) | |
download | pbuilder-691e978bfb9e1d8498b82acc319bb18f57c3d532.tar pbuilder-691e978bfb9e1d8498b82acc319bb18f57c3d532.tar.gz |
+ * pbuilder-buildpackage (PACKAGENAME): add banner for logfile.
+
+ * debian/control (Recommends): add devscripts to recommends
+
+ * pbuilder-checkparams (USE_PKGNAME_LOGFILE): fix typo
+
+ * pbuilder-modules (pbuilder-options): add reference to pkgname-logfile to help text.
+
+ * pbuilder.8: documentation of pkgname-logfile moved closer to --logfile option.
+
+ * ChangeLog: spell-checked.
+
+ * pbuilder.8: document --pkgname-logfile option.
+ From Michael Banck <mbanck@gmx.net>, requested feature.
+
* pbuilder-checkparams (PBUILDER_BUILD_LOGFILE): logfile name is stored in PBUILDER_BUILD_LOGFILE
+ (PBUILDER_BUILD_LOGFILE): add --pkgname-logfile option for using logfile with pkgname-version.log
+ (USE_PKGNAME_LOGFILE): make this variable be usable only as command-line option, and not for
+ configuration.
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 b442ac0..6e0f6e1 100755 --- a/pbuilder-checkparams +++ b/pbuilder-checkparams @@ -26,6 +26,7 @@ CHROOTEXEC="" OVERRIDE_APTLINES="no" BINARY_ARCH="no" PBUILDER_BUILD_LOGFILE= +USE_PKGNAME_LOGFILE="" while [ -n "$1" ]; do case "$1" in @@ -91,6 +92,10 @@ while [ -n "$1" ]; do PBUILDER_BUILD_LOGFILE=$(readlink -f "$2") shift; shift; ;; + --pkgname-logfile) + USE_PKGNAME_LOGFILE="yes" + shift; + ;; --aptconfdir) APTCONFDIR="$2"; shift; shift; |