blob: 0c818419404973395f7a2d5223531a5d40c8cae9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
$NetBSD: patch-make-host-1.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-host-1.sh.orig 2019-09-28 09:49:01.000000000 +0000
+++ make-host-1.sh
@@ -1,5 +1,5 @@
#!/bin/sh
-set -em
+set -e
# This is a script to be run as part of make.sh. The only time you'd
# want to run it by itself is if you're trying to cross-compile the
|