diff options
author | Joseph Myers <joseph@codesourcery.com> | 2007-02-19 17:28:03 +0000 |
---|---|---|
committer | Joseph Myers <jsm28@gcc.gnu.org> | 2007-02-19 17:28:03 +0000 |
commit | 9f8c673960975867c320f03a153f448568408f9a (patch) | |
tree | 3ff6b834ed974fa3f2ab28779e2ed24cdf003eb1 | |
parent | 80a3af5be705a4afbf976877c477a1fd25a21351 (diff) | |
download | gcc-9f8c673960975867c320f03a153f448568408f9a.zip gcc-9f8c673960975867c320f03a153f448568408f9a.tar.gz gcc-9f8c673960975867c320f03a153f448568408f9a.tar.bz2 |
configure.ac: Adjust for loop syntax.
* configure.ac: Adjust for loop syntax.
* configure: Regenerate.
From-SVN: r122132
-rw-r--r-- | ChangeLog | 5 | ||||
-rwxr-xr-x | configure | 3 | ||||
-rw-r--r-- | configure.ac | 3 |
3 files changed, 9 insertions, 2 deletions
@@ -1,3 +1,8 @@ +2007-02-19 Joseph Myers <joseph@codesourcery.com> + + * configure.ac: Adjust for loop syntax. + * configure: Regenerate. + 2007-02-18 Alexandre Oliva <aoliva@redhat.com> * configure: Rebuilt. @@ -1764,7 +1764,8 @@ if test -n "$PWD" ; then PWD=`${PWDCMD-pwd}`; fi # Quote arguments with shell meta charatcers. TOPLEVEL_CONFIGURE_ARGUMENTS= set -- "$progname" "$@" -for ac_arg; do +for ac_arg +do case "$ac_arg" in *" "*|*" "*|*\[\]\~\#\$\^\&\*\(\)\{\}\\\|\;\<\>\?*) ac_arg=`echo "$ac_arg" | sed "s/'/'\\\\\\\\''/g"` diff --git a/configure.ac b/configure.ac index e1311b2..3604ad7 100644 --- a/configure.ac +++ b/configure.ac @@ -89,7 +89,8 @@ if test -n "$PWD" ; then PWD=`${PWDCMD-pwd}`; fi # Quote arguments with shell meta charatcers. TOPLEVEL_CONFIGURE_ARGUMENTS= set -- "$progname" "$@" -for ac_arg; do +for ac_arg +do case "$ac_arg" in *" "*|*" "*|*[\[\]\~\#\$\^\&\*\(\)\{\}\\\|\;\<\>\?]*) ac_arg=`echo "$ac_arg" | sed "s/'/'\\\\\\\\''/g"` |