]> git.donarmstrong.com Git - debhelper.git/commitdiff
r525: * dh_strip: If a file is an ELF shared binary, does not have a .so.* in its
authorjoey <joey>
Thu, 23 May 2002 00:48:47 +0000 (00:48 +0000)
committerjoey <joey>
Thu, 23 May 2002 00:48:47 +0000 (00:48 +0000)
     name, stirp it as a ELF binary. It seems that GNUstep has files of this
     sort. See bug #35733 (not sufficient to close all of it).

debian/changelog
dh_strip

index c165b3f8a3d6ef4000211618e816bc55da5bfaa2..dc4bb832cc1103dc2216773bd44d6b91213f1d38 100644 (file)
@@ -1,3 +1,11 @@
+debhelper (4.0.7) unstable; urgency=low
+
+  * dh_strip: If a file is an ELF shared binary, does not have a .so.* in its
+    name, stirp it as a ELF binary. It seems that GNUstep has files of this
+    sort. See bug #35733 (not sufficient to close all of it).
+
+ -- Joey Hess <joeyh@debian.org>  Wed, 22 May 2002 20:40:09 -0400
+
 debhelper (4.0.6) unstable; urgency=low
 
   * Make dh_clean remove autom4te.cache.
index a62e440d071d77b190f3f8249808a30757ea1338..31d51aff3527ffe39d5d2ae8375e925d6b1f5023 100755 (executable)
--- a/dh_strip
+++ b/dh_strip
@@ -93,7 +93,7 @@ sub testfile {
        if ($mode & 0111) {
                # Ok, expensive test.
                my $type=get_file_type($_);
-               if ($type=~m/.*ELF.*executable.*/) {
+               if ($type=~m/.*ELF.*(executable|shared).*/) {
                        push @executables, $fn;
                        return;
                }