aboutsummaryrefslogtreecommitdiff
path: root/contrib/bmake/unit-tests/varquote.mk
diff options
context:
space:
mode:
Diffstat (limited to 'contrib/bmake/unit-tests/varquote.mk')
-rw-r--r--contrib/bmake/unit-tests/varquote.mk14
1 files changed, 0 insertions, 14 deletions
diff --git a/contrib/bmake/unit-tests/varquote.mk b/contrib/bmake/unit-tests/varquote.mk
deleted file mode 100644
index 3d5e8a7f32e9..000000000000
--- a/contrib/bmake/unit-tests/varquote.mk
+++ /dev/null
@@ -1,14 +0,0 @@
-# $NetBSD: varquote.mk,v 1.5 2021/12/28 10:47:00 rillig Exp $
-#
-# Test VAR:q modifier
-
-.if !defined(REPROFLAGS)
-REPROFLAGS+= -fdebug-prefix-map=\$$NETBSDSRCDIR=/usr/src
-REPROFLAGS+= -fdebug-regex-map='/usr/src/(.*)/obj$$=/usr/obj/\1'
-all:
- @${MAKE} -f ${MAKEFILE} REPROFLAGS=${REPROFLAGS:S/\$/&&/g:Q}
- @${MAKE} -f ${MAKEFILE} REPROFLAGS=${REPROFLAGS:q}
-.else
-all:
- @printf "%s %s\n" ${REPROFLAGS}
-.endif