[autoconf-conversion] New tools and multilibs fight with one another

Ian Lance Taylor ian at airs.com
Sat Jul 26 04:28:11 UTC 2003


"Paolo Bonzini" <bonzini at gnu.org> writes:

> > > I can't think of anything else that would work.  Basically you need to
> > > expand the parameter and then treat it as normal shell input for quote
> > > processing.  As far as I know, the shell language doesn't support that
> > > directly.
> 
> eval?

You're right, that does work.  For some reason I was thinking that
eval would create a subshell, but that was wrong.  So you can do
something like this:

eval "for a in ${ac_configure_args}; do PROCESS ARG; done"

That is simpler.

Ian



More information about the autoconf-conversion mailing list