diff options
author | Michael Sokolov <msokolov@ivan.Harhan.ORG> | 2001-01-27 19:29:31 +0000 |
---|---|---|
committer | Michael Sokolov <msokolov@ivan.Harhan.ORG> | 2001-01-27 19:29:31 +0000 |
commit | dcc5e02d01a89e9e2013a12a52d79fc69d48564b (patch) | |
tree | 1722f4cb736316f11105cf710613ba2d3fb3a45c | |
parent | 4c16ad64a2b6e8ee1b31c25d3e9e41c875e4e474 (diff) | |
download | newlib-dcc5e02d01a89e9e2013a12a52d79fc69d48564b.zip newlib-dcc5e02d01a89e9e2013a12a52d79fc69d48564b.tar.gz newlib-dcc5e02d01a89e9e2013a12a52d79fc69d48564b.tar.bz2 |
* ltcf-cxx.sh: Use parentheses around eval $ac_compile.
-rw-r--r-- | ChangeLog | 4 | ||||
-rw-r--r-- | ltcf-cxx.sh | 2 |
2 files changed, 5 insertions, 1 deletions
@@ -1,3 +1,7 @@ +2001-01-27 Michael Sokolov <msokolov@ivan.Harhan.ORG> + + * ltcf-cxx.sh: Use parentheses around eval $ac_compile. + 2001-01-27 Alexandre Oliva <aoliva@redhat.com> * ltcf-c.sh (ld_shlibs) [aix5*]: Disable on unknown CPU types. diff --git a/ltcf-cxx.sh b/ltcf-cxx.sh index eca44c0..bccc30b 100644 --- a/ltcf-cxx.sh +++ b/ltcf-cxx.sh @@ -804,7 +804,7 @@ private: EOF -if eval $ac_compile 2>&5; then +if (eval $ac_compile) 2>&5; then # Parse the compiler output and extract the necessary # objects, libraries and library flags. |