aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ChangeLog9
-rw-r--r--THANKS2
-rw-r--r--debian/changelog7
-rw-r--r--pbuilder-modules2
4 files changed, 19 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index e3d8eba..979413a 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,12 @@
+2003-01-18 Junichi Uekawa <dancer@debian.org>
+
+ * THANKS: update.
+
+ * pbuilder-modules (pbuilder-options): doit=cp instead of "ln -s".
+ in pbuilder-modules.
+ Thanks to eichin@metacarta.com (Mark Eichin) for reporting this.
+ Bug: 177173
+
2003-01-16 Junichi Uekawa <dancer@debian.org>
* pbuilder-modules (save_aptcache,recover_aptcache):
diff --git a/THANKS b/THANKS
index c83e253..799d580 100644
--- a/THANKS
+++ b/THANKS
@@ -23,6 +23,8 @@ Andrew Lau <netsnipe@debianplanet.org>
Sam Couter <sam@couter.dropbear.id.au>
Jose Carlos Garcia Sogo <jsogo@debian.org>
Matt Zimmerman <mdz@debian.org>
+Mark Eichin <eichin@metacarta.com>
+Michel Dänzer <daenzer@debian.org>
I thank them all!
diff --git a/debian/changelog b/debian/changelog
index 7fb7575..1031c8b 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,10 @@
+pbuilder (0.63) unstable; urgency=low
+
+ * pbuilder-modules; doit=cp, instead of doit=ln -s.
+ Thanks to eichin@metacarta.com (Mark Eichin) (closes: #177173)
+
+ -- Junichi Uekawa <dancer@debian.org> Sat, 18 Jan 2003 13:48:26 +0900
+
pbuilder (0.62) unstable; urgency=low
* Do not rely on shell globbing for apt archive cache.
diff --git a/pbuilder-modules b/pbuilder-modules
index f1940d8..d9007cc 100644
--- a/pbuilder-modules
+++ b/pbuilder-modules
@@ -216,7 +216,7 @@ function recover_aptcache() {
if [ "$APTCACHEHARDLINK" = "yes" ]; then
doit=ln
else
- doit=ln -s
+ doit=cp
fi
echo "Obtaining the cached apt archive contents"
find "$APTCACHE" -name \*.deb -maxdepth 1 | \