blob: 25255ee60639a3de14e77ccfd2896fbf07a8b8a8 [file] [log] [blame]
TRUE:=foo
FALSE:=
XY:=x y
X:=$(subst y, ,$(XY))
Y:=$(subst x, ,$(XY))
$(or ${FALSE}, $(info PASS_1))
# expect "foo"
$(info $(or ${TRUE}, $(info FAIL_2)))
# Too many arguments.
$(info $(or ${FALSE}, PASS, PASS))
$(info $(or ${FALSE}, $(X) ))
$(info $(or ${FALSE}, $(Y) ))
test:
echo OK