summaryrefslogtreecommitdiff
path: root/Debian/Debhelper/Dh_Buildsystems.pm
diff options
context:
space:
mode:
Diffstat (limited to 'Debian/Debhelper/Dh_Buildsystems.pm')
-rw-r--r--Debian/Debhelper/Dh_Buildsystems.pm12
1 files changed, 5 insertions, 7 deletions
diff --git a/Debian/Debhelper/Dh_Buildsystems.pm b/Debian/Debhelper/Dh_Buildsystems.pm
index 77d7f945..d50c5173 100644
--- a/Debian/Debhelper/Dh_Buildsystems.pm
+++ b/Debian/Debhelper/Dh_Buildsystems.pm
@@ -165,14 +165,12 @@ sub set_parallel {
$opt_parallel=1;
if (exists $ENV{DEB_BUILD_OPTIONS}) {
- # Parse parallel=n tag
+ # Get number of processes from parallel=n tag limiting it
+ # with $max if needed
foreach my $opt (split(/\s+/, $ENV{DEB_BUILD_OPTIONS})) {
- if ($opt =~ /^parallel=([-\d]+)$/) {
- my $n=$1;
- if ($n > 0 && ($max == -1 || $n < $max)) {
- $opt_parallel = $n;
- }
- else {
+ if ($opt =~ /^parallel=(-?\d+)$/) {
+ $opt_parallel = $1;
+ if ($max > 0 && $opt_parallel > $max) {
$opt_parallel = $max;
}
}