allwinner_a64/android/build/kati/testcase/ifdef_with_trailing_space.mk
2018-08-08 16:48:17 +08:00

22 lines
198 B
Makefile

# TODO(go): Fix
A := a # comment
ifdef $(A)
$(error FAIL)
else
$(info PASS)
endif
a := b
ifdef $(A)
$(info PASS)
else
$(error FAIL)
endif
ifdef a # comment
$(info PASS)
else
$(error FAIL)
endif