diff options
author | joey <joey> | 2002-02-24 17:25:29 +0000 |
---|---|---|
committer | joey <joey> | 2002-02-24 17:25:29 +0000 |
commit | 23ed23599d8f231166357766d4bea10d12aa363a (patch) | |
tree | 99fe1adf430adf7accb4b01747be03ca6e3dc022 | |
parent | 53775e799ffef734c2a4980eb2e2e1a9754b799a (diff) |
r512: * Fixed dh_movefiles. Closes: #135479, #135459
-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 964de4b..663f3e3 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,9 @@ +debhelper (3.4.10) unstable; urgency=low + + * Fixed dh_movefiles. Closes: #135479, #135459 + + -- Joey Hess <joeyh@debian.org> Sun, 24 Feb 2002 12:25:32 -0500 + debhelper (3.4.9) unstable; urgency=low * dh_movefiles: Allow for deeper --sourcedir. Closes: #131363 diff --git a/dh_movefiles b/dh_movefiles index 4cde088..499baf6 100755 --- a/dh_movefiles +++ b/dh_movefiles @@ -127,7 +127,7 @@ foreach my $package (@{$dh{DOPACKAGES}}) { } my $pwd=`pwd`; chomp $pwd; - complex_doit("(cd $sourcedir >/dev/null ; tar --create --remove-files --files-from=$pwd/movelist --file -) | (cd $tmp >/dev/null ;tar xpf -)"); + complex_doit("(cd $sourcedir >/dev/null ; tar --create --remove-files --files-from=$pwd/debian/movelist --file -) | (cd $tmp >/dev/null ;tar xpf -)"); doit("rm","-f","debian/movelist"); } } |