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 /dh_movefiles | |
parent | 53775e799ffef734c2a4980eb2e2e1a9754b799a (diff) | |
download | debhelper-23ed23599d8f231166357766d4bea10d12aa363a.tar.gz |
r512: * Fixed dh_movefiles. Closes: #135479, #135459
Diffstat (limited to 'dh_movefiles')
-rwxr-xr-x | dh_movefiles | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/dh_movefiles b/dh_movefiles index 4cde0887..499baf6d 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"); } } |