Re: Getting data from a nested configure script?

2008-12-26 Thread Allan Caffee
On Thu, Dec 11, 2008 at 5:22 AM, Benoit Sigoure wrote: > On Tue, Dec 9, 2008 at 11:28 AM, Ralf Wildenhues > wrote: >> * Benoit Sigoure wrote on Tue, Dec 09, 2008 at 11:11:17AM CET: >> echo '@CFLAGS@' | ./config.status --file=- Is there a simple way to do this inside a Makefile without having t

Re: Getting data from a nested configure script?

2008-12-26 Thread Andreas Schwab
"Allan Caffee" writes: > Is there a simple way to do this inside a Makefile without having the > value get expanded by our own configure script? I was thinking > something like: > > echo '+CFLAGS+' | tr '+' '@' | ./config.status --file=- echo '@'CFLAGS@ | ./config.status --file=- Andreas. --

Re: Getting data from a nested configure script?

2008-12-26 Thread Allan Caffee
On Fri, Dec 26, 2008 at 2:22 PM, Andreas Schwab wrote: > "Allan Caffee" writes: > >> Is there a simple way to do this inside a Makefile without having the >> value get expanded by our own configure script? I was thinking >> something like: >> >> echo '+CFLAGS+' | tr '+' '@' | ./config.status --f