diff options
author | dancer <dancer> | 2002-05-13 11:11:16 +0000 |
---|---|---|
committer | dancer <dancer> | 2002-05-13 11:11:16 +0000 |
commit | d4c2887e64e25e12897ffeafd463e30ea2cd3e4a (patch) | |
tree | da7e0da4415efbc6171cfc048fcc2337db5836ea | |
parent | d01d5967f484e683477436f0475875969c99a515 (diff) | |
download | pbuilder-d4c2887e64e25e12897ffeafd463e30ea2cd3e4a.tar pbuilder-d4c2887e64e25e12897ffeafd463e30ea2cd3e4a.tar.gz |
updated pbuilder bug, fixes in clean target. bug introduced by SMR
-rw-r--r-- | ChangeLog | 1 | ||||
-rw-r--r-- | debian/changelog | 2 | ||||
-rwxr-xr-x | pbuilder | 6 |
3 files changed, 5 insertions, 4 deletions
@@ -3,6 +3,7 @@ * pbuilder: modified clean target to load pbuilder-checkparams, instead of sourcing the config file directly. Change the test to if conditions. + Fixed a thinko. 2002-05-07 Junichi Uekawa <dancer@debian.org> diff --git a/debian/changelog b/debian/changelog index 5a409a0..d43a079 100644 --- a/debian/changelog +++ b/debian/changelog @@ -3,7 +3,7 @@ pbuilder (0.29) unstable; urgency=low * Fix typo in clean target, to use the config files properly. thanks to Steve M. Robbins for a patch. - -- Junichi Uekawa <dancer@debian.org> Mon, 13 May 2002 15:32:39 +0900 + -- Junichi Uekawa <dancer@debian.org> Mon, 13 May 2002 20:02:37 +0900 pbuilder (0.28) unstable; urgency=low @@ -25,9 +25,9 @@ case "$1" in clean) shift; . /usr/lib/pbuilder/pbuilder-checkparams - if [ -n "$BUILDPLACE" ]; then - echo "Cleaning [$BUILDPLACE]" - rm -rf "$BUILDPLACE"/* || true + if [ -n "$BASEBUILDPLACE" ]; then + echo "Cleaning [$BASEBUILDPLACE]" + rm -rf "$BASEBUILDPLACE"/* || true fi if [ -n "$APTCACHE" ]; then echo "Cleaning [$APTCACHE]" |