summaryrefslogtreecommitdiff
path: root/unit-tests/modmatch.mk
diff options
context:
space:
mode:
Diffstat (limited to 'unit-tests/modmatch.mk')
-rw-r--r--unit-tests/modmatch.mk16
1 files changed, 8 insertions, 8 deletions
diff --git a/unit-tests/modmatch.mk b/unit-tests/modmatch.mk
index f15b3d699a8e..7dcacf09da6d 100644
--- a/unit-tests/modmatch.mk
+++ b/unit-tests/modmatch.mk
@@ -1,21 +1,21 @@
-# $NetBSD: modmatch.mk,v 1.8 2020/08/16 20:03:53 rillig Exp $
+# $NetBSD: modmatch.mk,v 1.9 2020/10/24 08:50:17 rillig Exp $
#
# Tests for the :M and :S modifiers.
-X=a b c d e
+X= a b c d e
.for x in $X
-LIB${x:tu}=/tmp/lib$x.a
+LIB${x:tu}= /tmp/lib$x.a
.endfor
-X_LIBS= ${LIBA} ${LIBD} ${LIBE}
+X_LIBS= ${LIBA} ${LIBD} ${LIBE}
-LIB?=a
+LIB?= a
-var = head
-res = no
+var= head
+res= no
.if !empty(var:M${:Uhead\:tail:C/:.*//})
-res = OK
+res= OK
.endif
all: show-libs