make(1): fix typo in unit test for the .for loop

This commit is contained in:
rillig 2020-09-02 05:36:58 +00:00
parent 640eab791b
commit 337b196f85

View File

@ -1,4 +1,4 @@
# $Id: forloop.mk,v 1.2 2020/05/01 16:29:34 rillig Exp $
# $Id: forloop.mk,v 1.3 2020/09/02 05:36:58 rillig Exp $
all: for-loop
@ -36,7 +36,7 @@ X!= echo 'a=$a b=$b' >&2; echo
# Since at least 1993, iteration stops at the first newline.
# Back then, the .newline variable didn't exist, therefore it was unlikely
# that a newline ever occured.
# that a newline ever occurred.
.for var in a${.newline}b${.newline}c
X!= echo 'newline-item=('${var:Q}')' 1>&2; echo
.endfor