aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ChangeLog10
-rw-r--r--THANKS1
-rw-r--r--debian/changelog8
-rwxr-xr-xpbuilder-checkparams3
4 files changed, 22 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index 2da32b4..f263211 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,13 @@
+2003-09-01 Junichi Uekawa <dancer@debian.org>
+
+ * debian/changelog: 0.85
+
+ * THANKS: update
+
+ * pbuilder-checkparams (IGNORE_UMOUNT): fix case of --basetgz option
+ when the base.tgz does not exist (pbuilder create).
+ readlink failed if file did not exist.
+
2003-08-27 Junichi Uekawa <dancer@debian.org>
* Documentation/pbuilder-doc.xml (PBUILDER_UML_IMAGE): Update
diff --git a/THANKS b/THANKS
index 634b8b0..88fa7c4 100644
--- a/THANKS
+++ b/THANKS
@@ -30,6 +30,7 @@ Barak Pearlmutter <bap@cs.unm.edu>
Marek Habersack <grendel@debian.org>
Kenneth Pronovici <pronovic@debian.org>
Matt Kraai <kraai@alumni.cmu.edu>
+Roland Stigge
I thank them all!
diff --git a/debian/changelog b/debian/changelog
index 01792a7..e06c604 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,11 @@
+pbuilder (0.85) unstable; urgency=low
+
+ * Fix "pbuilder create with basetgz option fails due to new readlink behavior"
+ so that it is possible to pbuilder create with --basetgz option.
+ From: Roland Stigge (closes: #208038)
+
+ -- Junichi Uekawa <dancer@debian.org> Mon, 1 Sep 2003 07:37:41 +0900
+
pbuilder (0.84) unstable; urgency=low
* README.Debian: update very outdated parts.
diff --git a/pbuilder-checkparams b/pbuilder-checkparams
index 4fdbf24..7ff2062 100755
--- a/pbuilder-checkparams
+++ b/pbuilder-checkparams
@@ -35,6 +35,9 @@ IGNORE_UMOUNT=""
while [ -n "$1" ]; do
case "$1" in
--basetgz)
+ if [ "${PBCURRENTCOMMANDLINEOPERATION}" = 'create' ]; then
+ touch "$2";
+ fi
BASETGZ=$(readlink -f "$2");
shift; shift;
;;