summaryrefslogtreecommitdiff
path: root/Debian/Debhelper
diff options
context:
space:
mode:
authorjoey <joey>2002-09-16 17:39:33 +0000
committerjoey <joey>2002-09-16 17:39:33 +0000
commit3605d515acc588025eab1f32b159a961bf0773bb (patch)
tree78c52b905e26c49905cbb1a98f8d42e0a8c6eead /Debian/Debhelper
parent06eac1b429eff2ff995cc738dd64e449b757d6d3 (diff)
r549: * Fixed over-escaping of period when generating EXCLUDE_FIND.
Closes: #159155
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 3bf7df18..e2d26b25 100644
--- a/Debian/Debhelper/Dh_Lib.pm
+++ b/Debian/Debhelper/Dh_Lib.pm
@@ -54,7 +54,7 @@ sub init {
foreach (@{$dh{EXCLUDE}}) {
my $x=$_;
$x=escape_shell($x);
- $x=~s/\./\\\\./g;
+ $x=~s/\./\\./g;
$dh{EXCLUDE_FIND}.="-regex .*$x.* -or ";
}
$dh{EXCLUDE_FIND}=~s/ -or $//;