]> git.donarmstrong.com Git - debhelper.git/commitdiff
r457: * dh_strip: ensure that the file _ends_ with `.a'. Closes: #90647
authorjoey <joey>
Thu, 22 Mar 2001 04:33:11 +0000 (04:33 +0000)
committerjoey <joey>
Thu, 22 Mar 2001 04:33:11 +0000 (04:33 +0000)
debian/changelog
dh_strip

index 868c699eb7c2912f83dafbc86e951894789ec904..3eeae05a082ade1e9052aa25bf2479a6220f1abe 100644 (file)
@@ -1,3 +1,9 @@
+debhelper (3.0.14) unstable; urgency=low
+
+  * dh_strip: ensure that the file _ends_ with `.a'. Closes: #90647
+
+ -- Joey Hess <joeyh@debian.org>  Wed, 21 Mar 2001 20:21:11 -0800
+
 debhelper (3.0.13) unstable; urgency=low
 
   * dh_makeshlibs: more support for nasty soname formats, Closes: #90520
index a0d69aec088b08c069aebe478d2199cb0f4f2585..cf36085d4c956236c6df7c09a3f188673565cd9c 100755 (executable)
--- a/dh_strip
+++ b/dh_strip
@@ -89,7 +89,7 @@ sub testfile {
        }
        
        # Is it a static library, and not a debug library?
-       if (m/lib.*\.a/ && ! m/.*_g\.a/) {
+       if (m/lib.*\.a$/ && ! m/.*_g\.a$/) {
                push @static_libs, $fn;
                return;
        }