On Mon, 2013-10-28 at 11:36 -0500, Michael Procca wrote: > The last line of "Section 6.5 Setting Variables" of > http://www.gnu.org/software/make/manual/make.html#Recipes is: > > var := $(shell find . -name "*.c") > > and believe should be: > > var := $(shell find . -name '*.c')
The documented version will work fine. Double-quotes are sufficient to suppress shell globbing. _______________________________________________ Bug-make mailing list Bug-make@gnu.org https://lists.gnu.org/mailman/listinfo/bug-make