A little question:

a := 0

define aaa_template
a := 1
$(warning $(a))
endef

define bbb_template
$(warning $(a))
endef

$(eval $(call aaa_template))          # 0 (why 0?)
$(eval $(call bbb_template))          # 1


Best regards,
Alexandre Girao



I'm using version 3.81


_______________________________________________
Help-make mailing list
[email protected]
http://lists.gnu.org/mailman/listinfo/help-make

Reply via email to