summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--debian/changelog1
-rwxr-xr-xdh_shlibdeps4
2 files changed, 4 insertions, 1 deletions
diff --git a/debian/changelog b/debian/changelog
index b1317df0..a1fad553 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -30,6 +30,7 @@ debhelper (10.5) UNRELEASED; urgency=medium
* dh_compress: Ditto.
* dh_installman: Ditto.
* dh_genchanges: Ditto.
+ * dh_shlibdeps: Ditto.
* dh_builddeb: Rewrite the hand-written parallel code to use the new
simplier way of doing it.
* dh_shlibdeps: Avoid calling file(1) on debug symbols.
diff --git a/dh_shlibdeps b/dh_shlibdeps
index 65c1ebec..f60a787b 100755
--- a/dh_shlibdeps
+++ b/dh_shlibdeps
@@ -104,7 +104,8 @@ if (defined $dh{V_FLAG}) {
warning("You probably wanted to pass -V to dh_makeshlibs, it has no effect on dh_shlibdeps");
}
-foreach my $package (@{$dh{DOPACKAGES}}) {
+on_pkgs_in_parallel {
+foreach my $package (@_) {
my $tmp=tmpdir($package);
my $ext=pkgext($package);
my (@filelist, $ff);
@@ -150,6 +151,7 @@ foreach my $package (@{$dh{DOPACKAGES}}) {
@opts,@{$dh{U_PARAMS}},@filelist);
}
}
+};
=head1 SEE ALSO