]> git.donarmstrong.com Git - debhelper.git/commitdiff
r549: * Fixed over-escaping of period when generating EXCLUDE_FIND.
authorjoey <joey>
Mon, 16 Sep 2002 17:39:33 +0000 (17:39 +0000)
committerjoey <joey>
Mon, 16 Sep 2002 17:39:33 +0000 (17:39 +0000)
Closes: #159155
Debian/Debhelper/Dh_Lib.pm
debian/changelog

index 3bf7df185d3921b69f349cc0ac4b69f8493cb753..e2d26b259ea2c998d39d86403a889d5bb7918d3c 100644 (file)
@@ -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 $//;
index 0e4bd9c00fe6b7762beefa930ec6318fd79ed36f..2bb00ace33c7392f60915f1934519b78454ac93b 100644 (file)
@@ -1,3 +1,10 @@
+debhelper (4.1.9) unstable; urgency=low
+
+  * Fixed over-escaping of period when generating EXCLUDE_FIND.
+    Closes: #159155
+
+ -- Joey Hess <joeyh@debian.org>  Mon, 16 Sep 2002 13:41:05 -0400
+
 debhelper (4.1.8) unstable; urgency=low
 
   * Use invoke-rc.d always now that it is in policy. Fall back to old behavior