1# $NetBSD: varparse-dynamic.mk,v 1.1 2020/07/26 22:15:36 rillig Exp $ 2 3# Before 2020-07-27, there was an off-by-one error in Var_Parse that skipped 4# the last character in the variable name. 5# To trigger the bug, the variable must not be defined. 6.if ${.TARGET} # exact match, may be undefined 7.endif 8.if ${.TARGEX} # 1 character difference, must be defined 9.endif 10.if ${.TARGXX} # 2 characters difference, must be defined 11.endif 12 13all: 14 @: 15