From: joey Date: Sun, 19 Sep 1999 02:02:16 +0000 (+0000) Subject: r280: * Oops. Fixed dh_shlibdeps so it actually generates dependancies, broke in X-Git-Tag: version_2.0.101~318 X-Git-Url: https://git.donarmstrong.com/?a=commitdiff_plain;h=496b6f60c8155eefe5494da494e0468b82e0226f;p=debhelper.git r280: * Oops. Fixed dh_shlibdeps so it actually generates dependancies, broke in last version. --- diff --git a/debian/changelog b/debian/changelog index 598cc4a..f98c959 100644 --- a/debian/changelog +++ b/debian/changelog @@ -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 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 diff --git a/dh_shlibdeps b/dh_shlibdeps index cdf1356..1268fa4 100755 --- a/dh_shlibdeps +++ b/dh_shlibdeps @@ -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; } }