[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
RE: another really dumb question
From: |
Mark Galeck (CW) |
Subject: |
RE: another really dumb question |
Date: |
Thu, 20 Jan 2011 02:49:22 -0800 |
Oh yes, I keep forgetting, escape not just the variable (I tried that but
"didn't work"), but the function needs to be escaped too, for some reason this
does not stick.
>Because eval needs the $ to be escaped. Try this:
define FOOBAR
FOO := bar
$$(info $$(FOO))
endef
$(eval $(call FOOBAR))