> You cannot, in general, use GNU make (or any other standard make) with
> pathnames containing spaces.

I forwarded this to Chris earlier but didnt copy the list

why not use "shell" to do it for you?
e.g. if we have in PWD

1. a<space>b.txt
2. a<space>.c.txt
3. d.txt

and you want to process only 1. and 2. so I did this:
-----------
list:=$(shell find . -name "[a-d][[:blank:]]*\.txt")

t:
<tab>@echo ${list}
----------

then
%gmake t
gives
./a b.txt ./a c.txt

<Note space in above file names>

-aditya


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

Reply via email to