From: joey Date: Sun, 12 Nov 2000 01:37:46 +0000 (+0000) Subject: r387: * I retract 2.1.23, the hack doesn't help make dpkg-shlibdeps work; db3 X-Git-Tag: version_2.0.101~212 X-Git-Url: https://git.donarmstrong.com/?a=commitdiff_plain;h=2aa8e7bbb662f3ea43a03441dbcc6c7a3acb91a5;p=debhelper.git r387: * I retract 2.1.23, the hack doesn't help make dpkg-shlibdeps work; db3 is broken upstream. --- diff --git a/debian/changelog b/debian/changelog index 0291a0a..a90362e 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,10 @@ +debhelper (2.1.24) unstable; urgency=low + + * I retract 2.1.23, the hack doesn't help make dpkg-shlibdeps work; db3 + is broken upstream. + + -- Joey Hess Sat, 11 Nov 2000 17:35:34 -0800 + debhelper (2.1.23) unstable; urgency=low * dh_makeshlibs: Also scan files named "*.so*", not just "*.so.*", diff --git a/dh_makeshlibs b/dh_makeshlibs index 1e48146..a977071 100755 --- a/dh_makeshlibs +++ b/dh_makeshlibs @@ -12,7 +12,7 @@ foreach $PACKAGE (@{$dh{DOPACKAGES}}) { doit("rm", "-f", "$TMP/DEBIAN/shlibs"); - open (FIND, "find $TMP -xtype f -name '*.so*' |"); + open (FIND, "find $TMP -xtype f -name '*.so.*' |"); while () { chomp; ($library, $major)=m#.*/(.*)\.so\.(\d*)\.?#;