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/use-inference.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/use-inference.mk')
-rw-r--r-- | contrib/bmake/unit-tests/use-inference.mk | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/contrib/bmake/unit-tests/use-inference.mk b/contrib/bmake/unit-tests/use-inference.mk index b0e5017bc6fb..cde3c772edaa 100644 --- a/contrib/bmake/unit-tests/use-inference.mk +++ b/contrib/bmake/unit-tests/use-inference.mk @@ -1,4 +1,4 @@ -# $NetBSD: use-inference.mk,v 1.1 2020/08/09 16:32:28 rillig Exp $ +# $NetBSD: use-inference.mk,v 1.2 2020/11/05 00:41:04 rillig Exp $ # # Demonstrate that .USE rules do not have an effect on inference rules. # At least not in the special case where the inference rule does not @@ -33,3 +33,6 @@ use-inference.from: # assume it exists # This is strange since make definitely knows about the .from.to suffix # inference rule. But it seems to ignore it, maybe because it doesn't # have any associated commands. + +# XXX: Despite the error message "don't know how to make", the exit status +# is 0. This is inconsistent. |