aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ChangeLog1
-rw-r--r--debian/changelog2
-rwxr-xr-xpbuilder6
3 files changed, 5 insertions, 4 deletions
diff --git a/ChangeLog b/ChangeLog
index 9d7ebd6..520b1ce 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -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
diff --git a/pbuilder b/pbuilder
index 9e02855..ca88c87 100755
--- a/pbuilder
+++ b/pbuilder
@@ -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]"