tech-toolchain archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

Re: make: exists("quoted dir names")



On May 7, 10:52am, sjg%crufty.net@localhost (Simon Gerraty) wrote:
-- Subject: make: exists("quoted dir names")

| Hi Christos,
| 
| Like most of *nix, make does not much like paths with spaces
| and does not handle them gracefully.
| Using :Q can help, but is painful and unnatural.
| Per recent complaints from some users, handling quoted paths would be nice.

It is more complicated than that and we need to think about this really
carefully before introducing quoting in make(1):

[5:11pm] 7>cat q.mk
FOO="a/b"
all:
	echo '${FOO:H}'
[5:12pm] 8>make -f q.mk
echo '"a'
"a

christos


Home | Main Index | Thread Index | Old Index