You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This is an artifact of Kati largely targeting Make ~3.81 instead of 4+ (as Android makefiles have never run with Make 4+). On Make 3.81 (in a 14.04 docker image):
# cat s.mk
X Y :=a
$(info X = $(X))
$(info Y = $(Y))
$(info X Y = $(X Y))
# make -f s.mk
X =
Y =
X Y = a
make: *** No targets. Stop.
(and
$(.VARIABLES)
value containsX Y
in Kati case.The text was updated successfully, but these errors were encountered: