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 | |
parent | 8202659364b2dc2bb64b4ca83da202ca3b232cff (diff) | |
download | cygnal-b440e09025fc34d119c8f3f03a3ba6088e8c05ae.tar.gz cygnal-b440e09025fc34d119c8f3f03a3ba6088e8c05ae.tar.bz2 cygnal-b440e09025fc34d119c8f3f03a3ba6088e8c05ae.zip |
* configure.ac: Adjust for loop syntax.
* configure: Regenerate.
-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 e1311b254..3604ad745 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"` |