Actions

icon Post
text/html Subscribe
text/html Unsubscribe

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

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


  • To: Phil Edwards <phil@xxxxxxx>
  • Subject: Re: [autoconf-conversion] New tools and multilibs fight with one another
  • From: Ian Lance Taylor <ian@xxxxxxxx>
  • Date: 25 Jul 2003 13:23:18 -0700

Ian Lance Taylor <ian@xxxxxxxx> writes:

> I can't think of anything else that would work.

Of course, the other approach that would work would be to change
autoconf to build ac_configure_args in a different way.  For example,
it could do something like
  ac_configure_args="${ac_configure_args} ACARGSPLITTER ${arg}"
(note no quoting) and then do
  arg=
  for a in ${ac_configure_args}; do
    if test ${a} != ACARGSPLITTER; then
      arg="${arg} ${a}"
    else
      # process ${arg}
      arg=
    fi
  done

Ian