summaryrefslogtreecommitdiff
path: root/dh_makeshlibs
diff options
context:
space:
mode:
authorjoey <joey>2000-11-12 01:37:46 +0000
committerjoey <joey>2000-11-12 01:37:46 +0000
commit2aa8e7bbb662f3ea43a03441dbcc6c7a3acb91a5 (patch)
tree05d9deda25ed0566e73dae789dd69b5aebd48d48 /dh_makeshlibs
parent6965a7d27d2cf0024f8c791f155b7c01019e364e (diff)
r387: * I retract 2.1.23, the hack doesn't help make dpkg-shlibdeps work; db3
is broken upstream.
Diffstat (limited to 'dh_makeshlibs')
-rwxr-xr-xdh_makeshlibs2
1 files changed, 1 insertions, 1 deletions
diff --git a/dh_makeshlibs b/dh_makeshlibs
index 1e48146c..a9770717 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 (<FIND>) {
chomp;
($library, $major)=m#.*/(.*)\.so\.(\d*)\.?#;