From f29204de79892827bf59780f034d9c1626e19255 Mon Sep 17 00:00:00 2001 From: joey Date: Thu, 22 Mar 2001 04:33:11 +0000 Subject: [PATCH] r457: * dh_strip: ensure that the file _ends_ with `.a'. Closes: #90647 --- debian/changelog | 6 ++++++ dh_strip | 2 +- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/debian/changelog b/debian/changelog index 868c699..3eeae05 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,9 @@ +debhelper (3.0.14) unstable; urgency=low + + * dh_strip: ensure that the file _ends_ with `.a'. Closes: #90647 + + -- Joey Hess 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 diff --git a/dh_strip b/dh_strip index a0d69ae..cf36085 100755 --- 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; } -- 2.39.5