summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorOtavio Salvador <otavio@debian.org>2007-08-06 13:25:58 +0000
committerOtavio Salvador <otavio@debian.org>2007-08-06 13:25:58 +0000
commitf94b3a085363e719d19277ffd3c423b8ca3d6669 (patch)
tree15bafef9832e2a1f8e2cb2abb3e0501430388539
parent974445b92471a9044ae0ecd65357a1ca86f2ab69 (diff)
downloaddebootstrap-f94b3a085363e719d19277ffd3c423b8ca3d6669.tar.gz
Fix bunzip2 path. Closes: #436218.
r48889
-rw-r--r--debian/changelog6
-rw-r--r--functions2
2 files changed, 6 insertions, 2 deletions
diff --git a/debian/changelog b/debian/changelog
index 23da2ef..243eaac 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -14,7 +14,11 @@ debootstrap (1.0.2) UNRELEASED; urgency=low
(thanks, Michael Banck; closes: #314311).
* Add --version option (closes: #294484).
- -- Joey Hess <joeyh@debian.org> Fri, 20 Jul 2007 16:57:37 -0400
+ [ Otavio Salvador ]
+ * Fix bunzip2 path. Thanks Martín Ferrari <martin.ferrari@gmail.com> by
+ the patch (closes: #436218).
+
+ -- Otavio Salvador <otavio@debian.org> Mon, 06 Aug 2007 10:25:05 -0300
debootstrap (1.0.1) unstable; urgency=low
diff --git a/functions b/functions
index d483b8b..765815e 100644
--- a/functions
+++ b/functions
@@ -495,7 +495,7 @@ download_release_indices () {
local gzmd="`get_release_md5 "$reldest" "$subpath.gz"`"
local normmd="`get_release_md5 "$reldest" "$subpath"`"
local ext="$normmd ."
- if [ -x /usr/bin/bunzip2 -a "$bz2md" != "" ]; then
+ if [ -x /bin/bunzip2 -a "$bz2md" != "" ]; then
ext="$ext $bz2md bz2"
fi
if [ -x /bin/gunzip -a "$gzmd" != "" ]; then