summaryrefslogtreecommitdiff
path: root/dh_strip
diff options
context:
space:
mode:
authorjoey <joey>2001-03-22 04:33:11 +0000
committerjoey <joey>2001-03-22 04:33:11 +0000
commitf29204de79892827bf59780f034d9c1626e19255 (patch)
tree51f6cf8ab4e6caab6d39582127fdcd06bd7d079b /dh_strip
parent85eb81f6f2e86696f164bec8d3244df71291bfde (diff)
r457: * dh_strip: ensure that the file _ends_ with `.a'. Closes: #90647
Diffstat (limited to 'dh_strip')
-rwxr-xr-xdh_strip2
1 files changed, 1 insertions, 1 deletions
diff --git a/dh_strip b/dh_strip
index a0d69aec..cf36085d 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;
}