]> git.donarmstrong.com Git - debhelper.git/blobdiff - dh_movefiles
r400: * Oops, it was not expanding wildcard when it should.
[debhelper.git] / dh_movefiles
index cbfc3e6c71aa5b2ba02abd87779c38ae87f31a47..be46dcb3827dd026e3f102187ce174047e3ac6ce 100755 (executable)
@@ -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/$_");