X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=dh_shlibdeps;h=3ab89818d3614a9c15aa69ce5ab48d0d6d2a012a;hb=7bbc9917c046d06f7d7e8d7cad10b9e3b27a8ec9;hp=320f2501fec587407162c81d81b06a3c78dba141;hpb=64cd63ff797a52da5222024a966d6fdb495af6b5;p=debhelper.git diff --git a/dh_shlibdeps b/dh_shlibdeps index 320f250..3ab8981 100755 --- a/dh_shlibdeps +++ b/dh_shlibdeps @@ -87,7 +87,6 @@ on libbar1 as follows: init(options => { "L|libpackage=s" => \$dh{LIBPACKAGE}, - "add-udeb=s" => \$dh{SHLIBS_UDEB}, "dpkg-shlibdeps-params=s", => \$dh{U_PARAMS}, "l=s", => \$dh{L_PARAMS}, }); @@ -122,7 +121,7 @@ foreach my $package (@{$dh{DOPACKAGES}}) { if (defined($dh{EXCLUDE_FIND}) && $dh{EXCLUDE_FIND} ne '') { $find_options="! \\( $dh{EXCLUDE_FIND} \\)"; } - foreach my $file (split(/\n/,`find $tmp -type f \\( -perm +111 -or -name "*.so*" \\) $find_options -print`)) { + foreach my $file (split(/\n/,`find $tmp -type f \\( -perm +111 -or -name "*.so*" -or -name "*.cmxs" \\) $find_options -print`)) { # Prune directories that contain separated debug symbols. next if $file=~m!^\Q$tmp\E/usr/lib/debug/(lib|lib64|usr|bin|sbin|opt|dev|emul)/!; # TODO this is slow, optimize. Ie, file can run once on