Hi,

Am Wed, 19 Jan 2011 23:14:57 -0800
schrieb "Mark Galeck (CW)" <[email protected]>:

> Why doesn't this work as expected (expected would be to print "bar")
> 
> define FOOBAR
> FOO := bar
^- this is text that will be executed later in the eval
> $(info $(FOO))
this will be executed right here, because it is unquoted. What you want
instead is:
 $$(info $$(FOO)

> endef
> $(eval $(call FOOBAR))

Best Regards,

Bjoern


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

Reply via email to