blob: 671b2b530921f4f3f38ce8148f812c3bd198028a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
$NetBSD: patch-make-target-2.sh,v 1.1 2019/10/12 09:47:40 he Exp $
Do not explicitly turn on job control, it will stall a bakcground job
with SIGTTIN.
--- make-target-2.sh.orig 2019-09-28 09:49:01.000000000 +0000
+++ make-target-2.sh
@@ -1,5 +1,5 @@
#!/bin/sh
-set -em
+set -e
# --load argument skips compilation.
#
|