diff options
author | joey <joey> | 2003-04-13 15:45:43 +0000 |
---|---|---|
committer | joey <joey> | 2003-04-13 15:45:43 +0000 |
commit | d3e154d83f3f5b00122bb7e96b5843801ef1bdbe (patch) | |
tree | 2b42eb93ffb9de83f0ec32d05ba5d450614e2701 | |
parent | 0d919d2978cd12f6a6af3bf00003c38c84fd0a56 (diff) | |
download | debhelper-d3e154d83f3f5b00122bb7e96b5843801ef1bdbe.tar.gz |
r584: * Fix stupid typo in dh_movefiles. Closes: #188833
-rw-r--r-- | debian/changelog | 6 | ||||
-rwxr-xr-x | dh_movefiles | 2 |
2 files changed, 7 insertions, 1 deletions
diff --git a/debian/changelog b/debian/changelog index e7c9bb6b..df3e13af 100644 --- a/debian/changelog +++ b/debian/changelog @@ -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 diff --git a/dh_movefiles b/dh_movefiles index 8762487a..2c8a63fd 100755 --- a/dh_movefiles +++ b/dh_movefiles @@ -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"); } } |