summaryrefslogtreecommitdiff
path: root/dh_md5sums
diff options
context:
space:
mode:
authorNiels Thykier <niels@thykier.net>2017-06-25 11:55:31 +0000
committerNiels Thykier <niels@thykier.net>2017-06-25 11:55:35 +0000
commitfdebe4d207ca8dd64fd60ea74214b70fbb5b2945 (patch)
treec8c0473d3bcff9df84eea5bacf77ef2d1e37cc96 /dh_md5sums
parentb27dba80997f80d84a87b2464e5433e38c51f53e (diff)
dh_md5sums: Process packages in parallel
Re-indent of code pending next commit. Signed-off-by: Niels Thykier <niels@thykier.net>
Diffstat (limited to 'dh_md5sums')
-rwxr-xr-xdh_md5sums5
1 files changed, 4 insertions, 1 deletions
diff --git a/dh_md5sums b/dh_md5sums
index 7e00c977..ecc0e7a1 100755
--- a/dh_md5sums
+++ b/dh_md5sums
@@ -49,7 +49,8 @@ init(options => {
"include-conffiles" => \$dh{INCLUDE_CONFFILES},
});
-foreach my $package (@{$dh{DOPACKAGES}}) {
+on_pkgs_in_parallel {
+ foreach my $package (@_) {
next if is_udeb($package);
my $dbgsym_tmp = "debian/.debhelper/${package}/dbgsym-root";
@@ -102,6 +103,8 @@ foreach my $package (@{$dh{DOPACKAGES}}) {
}
}
+};
+
=head1 SEE ALSO
L<debhelper(7)>