]> git.donarmstrong.com Git - debhelper.git/commitdiff
r1751: releasing version 4.2.34 4.2.34
authorjoey <joey>
Thu, 21 Apr 2005 01:13:20 +0000 (01:13 +0000)
committerjoey <joey>
Thu, 21 Apr 2005 01:13:20 +0000 (01:13 +0000)
debian/changelog
dh_md5sums

index 092fb6ad4b94f3bccc2454ee9af8fa977bed24a8..6d504a0a09653c686ef14b017ac26139c20facef 100644 (file)
@@ -1,3 +1,10 @@
+debhelper (4.2.34) unstable; urgency=low
+
+  * The infinite number of monkeys release.
+  * dh_md5sums: don't crash if PWD contains an apostrophe. Closes: #305226
+
+ -- Joey Hess <joeyh@debian.org>  Wed, 20 Apr 2005 21:06:43 -0400
+
 debhelper (4.2.33) unstable; urgency=low
 
   * Update Spanish translation of dh_clean man page. Closes: #303052
index 8fd8b2eb5b810320656c0d45388a9b6d8e04c8d6..a53603e17ea31e09a7b7e5f4d8d97b1a9d15af7d 100755 (executable)
@@ -72,8 +72,7 @@ foreach my $package (@{$dh{DOPACKAGES}}) {
                $exclude.="! \\( $dh{EXCLUDE_FIND} \\) ";
        }
        
-       my $olddir=getcwd();
-       complex_doit("cd $tmp >/dev/null ; find . -type f $exclude ! -regex '.*/DEBIAN/.*' -printf '%P\\0' | xargs -r0 md5sum > DEBIAN/md5sums ; cd '$olddir' >/dev/null");
+       complex_doit("(cd $tmp >/dev/null ; find . -type f $exclude ! -regex '.*/DEBIAN/.*' -printf '%P\\0' | xargs -r0 md5sum > DEBIAN/md5sums) >/dev/null");
        # If the file's empty, no reason to waste inodes on it.
        if (-z "$tmp/DEBIAN/md5sums") {
                doit("rm","-f","$tmp/DEBIAN/md5sums");