diff options
author | joey <joey> | 2000-11-30 05:03:37 +0000 |
---|---|---|
committer | joey <joey> | 2000-11-30 05:03:37 +0000 |
commit | 9b53dab3959087e387b73f0a573172fdc910e737 (patch) | |
tree | fee1110426b35eaba1489fb50df622577c2d0e8f /dh_movefiles | |
parent | 5af47d4815bf66905cb224bdf7efdb093419a503 (diff) | |
download | debhelper-9b53dab3959087e387b73f0a573172fdc910e737.tar.gz |
r400: * Oops, it was not expanding wildcard when it should.
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 cbfc3e6c..be46dcb3 100755 --- a/dh_movefiles +++ b/dh_movefiles @@ -43,7 +43,7 @@ foreach $PACKAGE (@{$dh{DOPACKAGES}}) { # Now we need to expand wildcards in @tomove. # This is only necessary in pre-v3 land -- as of v3, the # expension is automatically done by filearray(). - if (@tomove && ! Debian::Debhelper::Dh_Lib::compat(3)) { + if (@tomove && Debian::Debhelper::Dh_Lib::compat(2)) { @filelist=(); foreach (@tomove) { push @filelist, glob("$sourcedir/$_"); |