]> git.donarmstrong.com Git - debhelper.git/commitdiff
r280: * Oops. Fixed dh_shlibdeps so it actually generates dependancies, broke in
authorjoey <joey>
Sun, 19 Sep 1999 02:02:16 +0000 (02:02 +0000)
committerjoey <joey>
Sun, 19 Sep 1999 02:02:16 +0000 (02:02 +0000)
     last version.

debian/changelog
dh_shlibdeps

index 598cc4a6519d629e8630c39f6c902da0e1341074..f98c959de642b66240e277e3ecae119f99f83e98 100644 (file)
@@ -1,3 +1,10 @@
+debhelper (2.0.50) unstable; urgency=medium
+
+  * Oops. Fixed dh_shlibdeps so it actually generates dependancies, broke in
+    last version.
+
+ -- Joey Hess <joeyh@master.debian.org>  Sat, 18 Sep 1999 19:00:10 -0700
+
 debhelper (2.0.49) unstable; urgency=low
 
   * dh_shlibdeps: detect statically linked binaries and don't pass them to
index cdf1356612a115577e644e4db6524fc95343e127..1268fa4a4f569ff50b55086b0b8348ea94dd554b 100755 (executable)
@@ -17,7 +17,7 @@ foreach $PACKAGE (@{$dh{DOPACKAGES}}) {
        foreach $file (split(/\n/,`find $TMP -type f \\( -perm +111 -or -name "*.so*" \\)`)) {
                # TODO: this is slow, optimize. Ie, file can run once on multiple files..
                $ff=`file "$file"`;
-               if ($ff=~m/ELF/ && ! $ff=~/statically linked/) {
+               if ($ff=~m/ELF/ && $ff!~/statically linked/) {
                        push @filelist,$file;
                }
        }