On 2009-03-28 22:30Z, Tom Browder wrote:
> 
> [...]  I'm used to quoting a token if I want embedded spaces

But 'make' variables are more list oriented, and quote characters
often won't do what you might be expecting. Thus,
  _a_ _b_ _c_
is the output of this makefile:

x := "a b c"
z := $(foreach h,$(x),_$(h)_)

.PHONY: all
all:
        @echo $(z)


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

Reply via email to