summaryrefslogtreecommitdiff
path: root/dh_shlibdeps
diff options
context:
space:
mode:
authorJoey Hess <joey@kodama.kitenet.net>2008-01-25 12:24:09 -0500
committerJoey Hess <joey@kodama.kitenet.net>2008-01-25 12:24:09 -0500
commit6bda6fc40540901848f7d62c1c262add3d689c21 (patch)
tree2bdf4de7030a13862b43850534cea9b0c775eb05 /dh_shlibdeps
parentb91c19fcf670df1b22a92b47e8ed2d435dfb7299 (diff)
* dh_shlibdeps: Add emul to exclude list.
Diffstat (limited to 'dh_shlibdeps')
-rwxr-xr-xdh_shlibdeps2
1 files changed, 1 insertions, 1 deletions
diff --git a/dh_shlibdeps b/dh_shlibdeps
index e705d73b..e859f04a 100755
--- a/dh_shlibdeps
+++ b/dh_shlibdeps
@@ -119,7 +119,7 @@ foreach my $package (@{$dh{DOPACKAGES}}) {
}
foreach my $file (split(/\n/,`find $tmp -type f \\( -perm +111 -or -name "*.so*" \\) $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)/!;
+ 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
# multiple files..
$ff=`file "$file"`;