]> git.donarmstrong.com Git - debhelper.git/commitdiff
r584: * Fix stupid typo in dh_movefiles. Closes: #188833
authorjoey <joey>
Sun, 13 Apr 2003 15:45:43 +0000 (15:45 +0000)
committerjoey <joey>
Sun, 13 Apr 2003 15:45:43 +0000 (15:45 +0000)
debian/changelog
dh_movefiles

index e7c9bb6b066e8d2a6673db1c89b388e1d2a6033c..df3e13af7370db5c1d19c786966b3038b04f506a 100644 (file)
@@ -1,3 +1,9 @@
+debhelper (4.1.42) unstable; urgency=medium
+
+  * Fix stupid typo in dh_movefiles. Closes: #188833
+
+ -- Joey Hess <joeyh@debian.org>  Sun, 13 Apr 2003 11:44:22 -0400
+
 debhelper (4.1.41) unstable; urgency=low
 
   * dh_movefiles: Do not pass --remove-files to tar, since that makes
index 8762487ac6bd10a4480f10d83dedc87b89792964..2c8a63fd934bbc32f601839caeb331700f765b41 100755 (executable)
@@ -143,7 +143,7 @@ foreach my $package (@{$dh{DOPACKAGES}}) {
                complex_doit("(cd $sourcedir >/dev/null ; tar --create --files-from=$pwd/debian/movelist --file -) | (cd $tmp >/dev/null ;tar xpf -)");
                # --remove-files is not used above because tar then doesn't
                # preserve hard links
-               complex_doit("cd $sourcedir >/dev/null ; cat $pwd/debian/movelist | xargs rm -f)");
+               complex_doit("(cd $sourcedir >/dev/null ; cat $pwd/debian/movelist | xargs rm -f)");
                doit("rm","-f","debian/movelist");
        }
 }