diff options
author | Simon J. Gerraty <sjg@FreeBSD.org> | 2020-11-20 06:02:31 +0000 |
---|---|---|
committer | Simon J. Gerraty <sjg@FreeBSD.org> | 2020-11-20 06:02:31 +0000 |
commit | e2eeea75eb8b6dd50c1298067a0655880d186734 (patch) | |
tree | 213e83f0d8e9a7e187083d9c33d8af6651cedeb2 /contrib/bmake/unit-tests/opt-keep-going.mk | |
parent | 466d0a2572130a2e393d6fffef5c716a8f867367 (diff) | |
parent | 1b65f0bd2bda7121a90f8cb4c1cacaa20f1b681d (diff) |
Merge bmake-20201117
o allow env var MAKE_OBJDIR_CHECK_WRITABLE=no to skip writable
checks in InitObjdir. Explicit .OBJDIR target always allows
read-only directory.
o More code cleanup and refactoring.
o More unit tests
MFC after: 1 week
Notes
Notes:
svn path=/head/; revision=367863
Diffstat (limited to 'contrib/bmake/unit-tests/opt-keep-going.mk')
-rw-r--r-- | contrib/bmake/unit-tests/opt-keep-going.mk | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/contrib/bmake/unit-tests/opt-keep-going.mk b/contrib/bmake/unit-tests/opt-keep-going.mk index ec4adfa00e62..72f605246712 100644 --- a/contrib/bmake/unit-tests/opt-keep-going.mk +++ b/contrib/bmake/unit-tests/opt-keep-going.mk @@ -1,10 +1,11 @@ -# $NetBSD: opt-keep-going.mk,v 1.4 2020/10/18 18:12:42 rillig Exp $ +# $NetBSD: opt-keep-going.mk,v 1.5 2020/11/09 20:50:56 rillig Exp $ # # Tests for the -k command line option, which stops building a target as soon # as an error is detected, but continues building the other, independent # targets, as far as possible. .MAKEFLAGS: -d0 # switch stdout to being line-buffered +.MAKEFLAGS: -k all: dependency other |