bug-make
[Top][All Lists]
Advanced

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

Re: [bug #31614] allow spaces in target names


From: Edward Welbourne
Subject: Re: [bug #31614] allow spaces in target names
Date: Wed, 10 Nov 2010 16:15:04 +0100

> $ echo 'a b:; echo $@' | make -f - "a b"
> echo a b
> a b

and what happens if you
  echo 'a b:; echo $@' | make -f - a
?  If that doesn't echo a, then you've broken all rules with more than
one target ...

I expected your escaping to require
  echo 'a\\ b:; echo $@' | make -f - 'a b'
or
  echo '"a b":; echo $@' | make -f - 'a b'
or similar, so that the target's space is escaped.

        Eddy.



reply via email to

[Prev in Thread] Current Thread [Next in Thread]