diff options
author | Junichi Uekawa <dancer@coreduo.netfort.gr.jp> | 2007-06-23 18:20:57 +0900 |
---|---|---|
committer | Junichi Uekawa <dancer@coreduo.netfort.gr.jp> | 2007-06-23 18:20:57 +0900 |
commit | f2f1e1d3b7e0730be83e07b70ad3fa565c123290 (patch) | |
tree | c8a14af4a87d1aaf0b33112d736068ba4069bd80 | |
parent | 684ec921d3ceebdd6da8ce4741179a2bff865927 (diff) | |
download | pbuilder-f2f1e1d3b7e0730be83e07b70ad3fa565c123290.tar pbuilder-f2f1e1d3b7e0730be83e07b70ad3fa565c123290.tar.gz |
* Bug fix: "Patch for pbuilder-distribution.sh script for use with
pdebuild", thanks to Andres Mejia (Closes: #429770).
-rw-r--r-- | ChangeLog | 4 | ||||
-rw-r--r-- | THANKS | 1 | ||||
-rw-r--r-- | debian/changelog | 4 | ||||
-rwxr-xr-x | examples/pbuilder-distribution.sh | 2 |
4 files changed, 9 insertions, 2 deletions
@@ -1,3 +1,7 @@ +2007-06-23 Junichi Uekawa <dancer@debian.org> + + * examples/pbuilder-distribution.sh: $@ -> "$@" + 2007-06-17 Junichi Uekawa <dancer@debian.org> * pbuilder.8: fix incorrect banners in execution example. @@ -39,6 +39,7 @@ Mike Markley <mike@markley.org> Era Eriksson <era@iki.fi> Danilo Piazzalunga <danilopiazza@libero.it> Peter Eisentraut +Andres Mejia I thank them all! diff --git a/debian/changelog b/debian/changelog index c43d8ab..ff23b62 100644 --- a/debian/changelog +++ b/debian/changelog @@ -7,8 +7,10 @@ pbuilder (0.170) UNRELEASED; urgency=low * fix pbuilder.8 manpage example, it was different from real output. * pbuilder-doc.pdf: do not compress this file. * make pbuilderrc example on DEBBUILDOPTS not contain -b, which is not recommended. + * Bug fix: "Patch for pbuilder-distribution.sh script for use with + pdebuild", thanks to Andres Mejia (Closes: #429770). - -- Junichi Uekawa <dancer@debian.org> Wed, 20 Jun 2007 04:24:25 +0900 + -- Junichi Uekawa <dancer@debian.org> Sat, 23 Jun 2007 18:19:47 +0900 pbuilder (0.169) unstable; urgency=low diff --git a/examples/pbuilder-distribution.sh b/examples/pbuilder-distribution.sh index 88c29f2..efd01dd 100755 --- a/examples/pbuilder-distribution.sh +++ b/examples/pbuilder-distribution.sh @@ -16,7 +16,7 @@ if ( $PROCEED == true ) then sudo pbuilder $OPERATION \ --basetgz $BASE_DIR/$DISTRIBUTION-base.tgz \ --distribution $DISTRIBUTION \ - --buildresult $BASE_DIR/result $@ + --buildresult $BASE_DIR/result "$@" else echo "Invalid command..." echo "Valid commands are:" |