diff options
author | Joey Hess <joey@gnu.kitenet.net> | 2009-11-23 13:54:31 -0500 |
---|---|---|
committer | Joey Hess <joey@gnu.kitenet.net> | 2009-11-23 13:54:31 -0500 |
commit | 23ffaf8d5b6ac116b3f489c30fb57d32b1ca9c0f (patch) | |
tree | 6fe7223ec59c7482c302d872f2459dfc03657e8e /Debian | |
parent | a6d3e307da558f6bf455a0d21e1cb9ec1b4fef03 (diff) | |
download | debhelper-23ffaf8d5b6ac116b3f489c30fb57d32b1ca9c0f.tar.gz |
Parallel building support is no longer enabled by default. It can still be enabled by using the --max-parallel option. This was necessary because some buildds build with -j2 by default.
Diffstat (limited to 'Debian')
-rw-r--r-- | Debian/Debhelper/Dh_Buildsystems.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Debian/Debhelper/Dh_Buildsystems.pm b/Debian/Debhelper/Dh_Buildsystems.pm index f6c123c5..dd12ee95 100644 --- a/Debian/Debhelper/Dh_Buildsystems.pm +++ b/Debian/Debhelper/Dh_Buildsystems.pm @@ -136,7 +136,7 @@ sub load_all_buildsystems { sub buildsystems_init { my %args=@_; - my $max_parallel=-1; # unlimited + my $max_parallel=1; # Available command line options my %options = ( |