diff options
author | Joseph Myers <joseph@codesourcery.com> | 2007-02-19 17:24:25 +0000 |
---|---|---|
committer | Joseph Myers <joseph@codesourcery.com> | 2007-02-19 17:24:25 +0000 |
commit | b440e09025fc34d119c8f3f03a3ba6088e8c05ae (patch) | |
tree | 8bcddc606e949d7ec8004854b0938799e484de8f /configure.ac | |
parent | 8202659364b2dc2bb64b4ca83da202ca3b232cff (diff) | |
download | newlib-b440e09025fc34d119c8f3f03a3ba6088e8c05ae.zip newlib-b440e09025fc34d119c8f3f03a3ba6088e8c05ae.tar.gz newlib-b440e09025fc34d119c8f3f03a3ba6088e8c05ae.tar.bz2 |
* configure.ac: Adjust for loop syntax.
* configure: Regenerate.
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 3 |
1 files changed, 2 insertions, 1 deletions
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"` |