From 3605d515acc588025eab1f32b159a961bf0773bb Mon Sep 17 00:00:00 2001 From: joey Date: Mon, 16 Sep 2002 17:39:33 +0000 Subject: r549: * Fixed over-escaping of period when generating EXCLUDE_FIND. Closes: #159155 --- Debian/Debhelper/Dh_Lib.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Debian/Debhelper/Dh_Lib.pm') 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 $//; -- cgit v1.2.3