aboutsummaryrefslogtreecommitdiff
path: root/contrib/bmake/unit-tests/sh-leading-plus.mk
diff options
context:
space:
mode:
Diffstat (limited to 'contrib/bmake/unit-tests/sh-leading-plus.mk')
-rw-r--r--contrib/bmake/unit-tests/sh-leading-plus.mk6
1 files changed, 5 insertions, 1 deletions
diff --git a/contrib/bmake/unit-tests/sh-leading-plus.mk b/contrib/bmake/unit-tests/sh-leading-plus.mk
index ff57b4a38a7d..83e7e7a15e24 100644
--- a/contrib/bmake/unit-tests/sh-leading-plus.mk
+++ b/contrib/bmake/unit-tests/sh-leading-plus.mk
@@ -1,4 +1,4 @@
-# $NetBSD: sh-leading-plus.mk,v 1.4 2020/11/09 20:50:56 rillig Exp $
+# $NetBSD: sh-leading-plus.mk,v 1.5 2023/01/19 19:55:27 rillig Exp $
#
# Tests for shell commands preceded by a '+', to run them even if
# the command line option -n is given.
@@ -8,3 +8,7 @@
all:
@echo 'this command is not run'
@+echo 'this command is run'
+
+ # Since 2023-01-17, the leading '@', '+' and '-' may contain
+ # whitespace, for compatibility with GNU make.
+ + + + @echo 'whitespace in leading part'