diff options
author | Niels Thykier <niels@thykier.net> | 2018-05-19 12:54:56 +0000 |
---|---|---|
committer | Niels Thykier <niels@thykier.net> | 2018-05-19 12:54:56 +0000 |
commit | 158f74cc5562941df665393e325c63605697484f (patch) | |
tree | 32678315e53f14fc68e61d48f45a1f44d7e24dcd /lib | |
parent | 57e20f47c72fccde78ad6b086e96798491eaccd5 (diff) | |
download | debhelper-158f74cc5562941df665393e325c63605697484f.tar.gz |
makefile.pm: Revert use of -O for now
Signed-off-by: Niels Thykier <niels@thykier.net>
Diffstat (limited to 'lib')
-rw-r--r-- | lib/Debian/Debhelper/Buildsystem/makefile.pm | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/lib/Debian/Debhelper/Buildsystem/makefile.pm b/lib/Debian/Debhelper/Buildsystem/makefile.pm index a44fe192..052af0b4 100644 --- a/lib/Debian/Debhelper/Buildsystem/makefile.pm +++ b/lib/Debian/Debhelper/Buildsystem/makefile.pm @@ -84,9 +84,6 @@ sub do_make { if ($parallel == 0 or $parallel > 1) { # We have to use the empty string for "unlimited" $parallel = '' if $parallel == 0; - # -O is for synchronizing the output; only if STDOUT - # is not a TTY - unshift(@_, '-Oline') if not -t STDOUT; unshift(@_, "-j${parallel}"); } else { unshift(@_, '-j1'); |