From 6bda6fc40540901848f7d62c1c262add3d689c21 Mon Sep 17 00:00:00 2001 From: Joey Hess Date: Fri, 25 Jan 2008 12:24:09 -0500 Subject: [PATCH] * dh_shlibdeps: Add emul to exclude list. --- debian/changelog | 1 + dh_shlibdeps | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/debian/changelog b/debian/changelog index 6b5b8ea..bcfb45c 100644 --- a/debian/changelog +++ b/debian/changelog @@ -2,6 +2,7 @@ debhelper (6.0.4) UNRELEASED; urgency=low * dh_strip: Improve the idempotency fix put in for #380314. * dh_strip: The -k flag didn't work (--keep did). Fix. + * dh_shlibdeps: Add emul to exclude list. -- Joey Hess Thu, 24 Jan 2008 21:39:37 -0500 diff --git a/dh_shlibdeps b/dh_shlibdeps index e705d73..e859f04 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"`; -- 2.39.5