diff options
author | Simon J. Gerraty <sjg@FreeBSD.org> | 2020-11-07 21:46:27 +0000 |
---|---|---|
committer | Simon J. Gerraty <sjg@FreeBSD.org> | 2020-11-07 21:46:27 +0000 |
commit | 956e45f6fb3e18b8e89b1341708db60c30bb9f27 (patch) | |
tree | b73e225c44ed4cf063ba39f347d06efaeccb3149 /contrib/bmake/unit-tests/sunshcmd.mk | |
parent | f908d8247ef4d535007f608593a29d62b5df3873 (diff) | |
parent | 302da1a3d35c15cb29d76e0a939f8bcb13f7ad80 (diff) |
Update to bmake-20201101
Lots of new unit-tests increase code coverage.
Lots of refactoring, cleanup and simlpification to reduce
code size.
Fixes for Bug 223564 and 245807
Updates to dirdeps.mk and meta2deps.py
Notes
Notes:
svn path=/head/; revision=367465
Diffstat (limited to 'contrib/bmake/unit-tests/sunshcmd.mk')
-rw-r--r-- | contrib/bmake/unit-tests/sunshcmd.mk | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/contrib/bmake/unit-tests/sunshcmd.mk b/contrib/bmake/unit-tests/sunshcmd.mk index e3baf901e51d..40db66d17ee0 100644 --- a/contrib/bmake/unit-tests/sunshcmd.mk +++ b/contrib/bmake/unit-tests/sunshcmd.mk @@ -1,8 +1,10 @@ -BYECMD = echo bye -LATERCMD = echo later +# $NetBSD: sunshcmd.mk,v 1.3 2020/10/24 08:50:17 rillig Exp $ + +BYECMD= echo bye +LATERCMD= echo later TEST1 :sh = echo hello TEST2 :sh = ${BYECMD} -TEST3 = ${LATERCMD:sh} +TEST3= ${LATERCMD:sh} all: @echo "TEST1=${TEST1}" |