diff options
author | dancer <dancer> | 2002-07-12 15:15:35 +0000 |
---|---|---|
committer | dancer <dancer> | 2002-07-12 15:15:35 +0000 |
commit | bb27d57d6f29332ecd9781f11b02c1f72185a413 (patch) | |
tree | 2f463240c6860dfbd660e7c05af999fa6fcf8d41 | |
parent | f24758ad841c4265aac645fffc846249631669a4 (diff) | |
download | pbuilder-bb27d57d6f29332ecd9781f11b02c1f72185a413.tar pbuilder-bb27d57d6f29332ecd9781f11b02c1f72185a413.tar.gz |
20020713:vivare:
-rw-r--r-- | ChangeLog | 4 | ||||
-rw-r--r-- | debian/changelog | 1 | ||||
-rwxr-xr-x | pbuilder-updatebuildenv | 4 |
3 files changed, 8 insertions, 1 deletions
@@ -1,3 +1,7 @@ +2002-07-11 Junichi Uekawa <dancer@debian.org> + + * pbuilder-updatebuildenv: fix the && usage to use if. + 2002-07-07 Junichi Uekawa <dancer@debian.org> * pbuilderrc.5: document that "" for APTCACHE will turn off diff --git a/debian/changelog b/debian/changelog index c69161c..8667e52 100644 --- a/debian/changelog +++ b/debian/changelog @@ -2,6 +2,7 @@ pbuilder (0.33) unstable; urgency=low * Unreleased software. * Update documentation for pbuilder.8, and pbuilderrc.5 + * Remove spurious message pointed out by Jochen Voss. (closes: 152175) -- Junichi Uekawa <dancer@debian.org> Sun, 7 Jul 2002 03:34:12 +0900 diff --git a/pbuilder-updatebuildenv b/pbuilder-updatebuildenv index b020254..1721a20 100755 --- a/pbuilder-updatebuildenv +++ b/pbuilder-updatebuildenv @@ -24,7 +24,9 @@ set -e CHROOTEXEC="chroot $BUILDPLACE " -test -n "$DISTRIBUTION" && echo "Upgrading for distribution $DISTRIBUTION" +if [ -n "$DISTRIBUTION" ]; then + echo "Upgrading for distribution $DISTRIBUTION" +fi extractbuildplace trap umountproc_cleanbuildplace exit |