diff options
author | pme <pme@138bc75d-0d04-0410-961f-82ee72b054a4> | 2003-08-23 04:17:04 +0000 |
---|---|---|
committer | pme <pme@138bc75d-0d04-0410-961f-82ee72b054a4> | 2003-08-23 04:17:04 +0000 |
commit | 4482474a467927ffe55e01cb039f052cb598fa9c (patch) | |
tree | a6181152a6e8f8c325a03e49b7a5973407c8e562 /configure.in | |
parent | 5b2a6a3875a155f53eec2265be5928ae2c63aff0 (diff) | |
download | gcc-4482474a467927ffe55e01cb039f052cb598fa9c.tar.gz |
2003-08-23 Phil Edwards <pme@gcc.gnu.org>
* configure.in: Use newline instead of semicolon when assuming
shell arguments in a for loop.
* configure: Regenerated.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@70728 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'configure.in')
-rw-r--r-- | configure.in | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/configure.in b/configure.in index 5c461fc8049..161ea353d57 100644 --- a/configure.in +++ b/configure.in @@ -74,7 +74,8 @@ cat <<\EOF_SED > conftestsed s,\\,\\\\,g; s,\$,$$,g EOF_SED tmp="'$progname'" -for ac_arg ; do +for ac_arg +do tmp="$tmp '"`echo "$ac_arg" | sed -fconftestsed` done rm -f conftestsed |