Mail Archives: djgpp-workers/1996/08/29/01:31:15
On Wed, 28 Aug 1996, DJ Delorie wrote:
> Be careful. gmake does it by letting the *shell* (/bin/sh) interpret
> the back-ticks. For example, this syntax is equally legal and uses
> the same methods:
>
> FOO = -x -F *.h -D`glok | cut -c4-6` $HOME
Thanks for the warning. I didn't look in the Make code yet, but this
suggests that the actual evaluation of `...` in FOO is deferred until the
command that uses it is run, right? In that case, using a unixy shell
will have to be the solution to such fragments.
- Raw text -