diff options
author | Joey Hess <joey@gnu.kitenet.net> | 2009-06-10 17:13:55 -0400 |
---|---|---|
committer | Joey Hess <joey@gnu.kitenet.net> | 2009-06-10 17:13:55 -0400 |
commit | 77334e766300401b6fe512fd9a758c0fd5819db4 (patch) | |
tree | 53496d3699164e9d9d7b50a8fb1ac4f9ab0d5e7f /dh_shlibdeps | |
parent | f9a52839c6ee980150ecfd8dbf26cef1e7dc0122 (diff) | |
download | debhelper-77334e766300401b6fe512fd9a758c0fd5819db4.tar.gz |
dh_shlibdeps: run dpkg-shlibdeps on OCaml's *.cmxs files
Diffstat (limited to 'dh_shlibdeps')
-rwxr-xr-x | dh_shlibdeps | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/dh_shlibdeps b/dh_shlibdeps index 7b974eb8..3ab89818 100755 --- a/dh_shlibdeps +++ b/dh_shlibdeps @@ -121,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 |