Date: Thu, 29 Aug 1996 08:29:01 +0200 (IST) From: Eli Zaretskii To: DJ Delorie Cc: robert DOT hoehne AT mathematik DOT tu-chemnitz DOT de, djgpp-workers AT delorie DOT com Subject: Re: Port of Make 3.74 to DJGPP In-Reply-To: <199608282354.TAA13784@delorie.com> Message-Id: Mime-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII 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.