summaryrefslogtreecommitdiff
path: root/lib/Debian/Debhelper/Buildsystem/makefile.pm
diff options
context:
space:
mode:
authorNiels Thykier <niels@thykier.net>2018-04-04 18:17:24 +0000
committerNiels Thykier <niels@thykier.net>2018-04-04 18:17:24 +0000
commit41a22f56335382a6711c5b1b6362fc5f84be6f77 (patch)
tree6a1dc4c6bbeebfb7c0a3bbe2189caf6d2e6dd3d9 /lib/Debian/Debhelper/Buildsystem/makefile.pm
parent98d248f46b6085d691aa29c423fa9fa2e240709a (diff)
downloaddebhelper-41a22f56335382a6711c5b1b6362fc5f84be6f77.tar.gz
makefile: Use -Oline instead of -O
Signed-off-by: Niels Thykier <niels@thykier.net>
Diffstat (limited to 'lib/Debian/Debhelper/Buildsystem/makefile.pm')
-rw-r--r--lib/Debian/Debhelper/Buildsystem/makefile.pm2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Debian/Debhelper/Buildsystem/makefile.pm b/lib/Debian/Debhelper/Buildsystem/makefile.pm
index c899d2a0..4443a991 100644
--- a/lib/Debian/Debhelper/Buildsystem/makefile.pm
+++ b/lib/Debian/Debhelper/Buildsystem/makefile.pm
@@ -86,7 +86,7 @@ sub do_make {
$parallel = '' if $parallel == 0;
# -O is for synchronizing the output; only if STDOUT
# is not a TTY
- unshift(@_, '-O') if not -t STDOUT;
+ unshift(@_, '-Oline') if not -t STDOUT;
unshift(@_, "-j${parallel}");
} else {
unshift(@_, '-j1');