Module Name: src
Committed By: rillig
Date: Thu Nov 5 00:41:04 UTC 2020
Modified Files:
src/usr.bin/make/unit-tests: use-inference.mk
Log Message:
make(1): add remark for exit status 0 despite error
To generate a diff of this commit:
cvs rdiff -u -r1.1 -r1.2 src/usr.bin/make/unit-tests/use-inference.mk
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: src/usr.bin/make/unit-tests/use-inference.mk
diff -u src/usr.bin/make/unit-tests/use-inference.mk:1.1 src/usr.bin/make/unit-tests/use-inference.mk:1.2
--- src/usr.bin/make/unit-tests/use-inference.mk:1.1 Sun Aug 9 16:32:28 2020
+++ src/usr.bin/make/unit-tests/use-inference.mk Thu Nov 5 00:41:04 2020
@@ -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.