diff options
author | joey <joey> | 2002-09-16 17:39:33 +0000 |
---|---|---|
committer | joey <joey> | 2002-09-16 17:39:33 +0000 |
commit | 3605d515acc588025eab1f32b159a961bf0773bb (patch) | |
tree | 78c52b905e26c49905cbb1a98f8d42e0a8c6eead /Debian | |
parent | 06eac1b429eff2ff995cc738dd64e449b757d6d3 (diff) | |
download | debhelper-3605d515acc588025eab1f32b159a961bf0773bb.tar.gz |
r549: * Fixed over-escaping of period when generating EXCLUDE_FIND.
Closes: #159155
Diffstat (limited to 'Debian')
-rw-r--r-- | Debian/Debhelper/Dh_Lib.pm | 2 |
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 $//; |