summaryrefslogtreecommitdiff
path: root/Debian/Debhelper
diff options
context:
space:
mode:
authorjoey <joey>2000-11-30 05:03:37 +0000
committerjoey <joey>2000-11-30 05:03:37 +0000
commit9b53dab3959087e387b73f0a573172fdc910e737 (patch)
treefee1110426b35eaba1489fb50df622577c2d0e8f /Debian/Debhelper
parent5af47d4815bf66905cb224bdf7efdb093419a503 (diff)
r400: * Oops, it was not expanding wildcard when it should.
Diffstat (limited to 'Debian/Debhelper')
-rw-r--r--Debian/Debhelper/Dh_Lib.pm2
1 files changed, 1 insertions, 1 deletions
diff --git a/Debian/Debhelper/Dh_Lib.pm b/Debian/Debhelper/Dh_Lib.pm
index 52adf66a..db2a1cf5 100644
--- a/Debian/Debhelper/Dh_Lib.pm
+++ b/Debian/Debhelper/Dh_Lib.pm
@@ -354,7 +354,7 @@ sub filearray {
# The tricky bit is that the glob expansion is done
# as if we were in the specified directory, so the
# filenames that come out are relative to it.
- if (defined $globdir && compat(3)) {
+ if (defined $globdir && ! compat(2)) {
for (map { glob "$globdir/$_" } split) {
s#^$globdir/##;
push @ret, $_;