]> git.donarmstrong.com Git - debhelper.git/commitdiff
* dh_shlibdeps: Add emul to exclude list.
authorJoey Hess <joey@kodama.kitenet.net>
Fri, 25 Jan 2008 17:24:09 +0000 (12:24 -0500)
committerJoey Hess <joey@kodama.kitenet.net>
Fri, 25 Jan 2008 17:24:09 +0000 (12:24 -0500)
debian/changelog
dh_shlibdeps

index 6b5b8ea4be6eb1e96517fefb99f0af7d711e764b..bcfb45ce3c655059eed5743dd011604c8c620e7e 100644 (file)
@@ -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 <joeyh@debian.org>  Thu, 24 Jan 2008 21:39:37 -0500
 
index e705d73b79a77deed15fe651a7fe418f6362d4de..e859f04aa3abc351b486156dc3b7b23e2675fd0a 100755 (executable)
@@ -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"`;