diff options
author | Nathanael Nerode <neroden@gcc.gnu.org> | 2003-08-27 03:05:51 +0000 |
---|---|---|
committer | Nathanael Nerode <neroden@gcc.gnu.org> | 2003-08-27 03:05:51 +0000 |
commit | 78bcc6ada487ff5a8a26907719c3fc1f5931e65c (patch) | |
tree | 4dd5498d95f889d8ef467686cc160560b65bd8ce /configure.in | |
parent | 54c1d7ea18016920bfdcf90514e097ab6b8bc466 (diff) | |
download | newlib-78bcc6ada487ff5a8a26907719c3fc1f5931e65c.zip newlib-78bcc6ada487ff5a8a26907719c3fc1f5931e65c.tar.gz newlib-78bcc6ada487ff5a8a26907719c3fc1f5931e65c.tar.bz2 |
Merge bugfix from GCC:
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.
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 5c461fc..161ea35 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 |