diff options
author | Michael Sokolov <msokolov@ivan.Harhan.ORG> | 2001-01-26 22:55:12 +0000 |
---|---|---|
committer | Michael Sokolov <msokolov@gcc.gnu.org> | 2001-01-26 22:55:12 +0000 |
commit | 45291dd5855ad2c9c38088864c7b047e483d2a61 (patch) | |
tree | 9dea0107e9a6bd2494b891718a04234755dcfd11 | |
parent | 80a59404aad47d5f6ea148414d775af5fe4171a1 (diff) | |
download | gcc-45291dd5855ad2c9c38088864c7b047e483d2a61.zip gcc-45291dd5855ad2c9c38088864c7b047e483d2a61.tar.gz gcc-45291dd5855ad2c9c38088864c7b047e483d2a61.tar.bz2 |
* ltcf-cxx.sh: Use parentheses around eval $ac_compile.
From-SVN: r39288
-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-26 Michael Sokolov <msokolov@ivan.Harhan.ORG> + + * ltcf-cxx.sh: Use parentheses around eval $ac_compile. + 2001-01-26 Tom Tromey <tromey@redhat.com> * configure.in: Allow libgcj to be built on Sparc Solaris. diff --git a/ltcf-cxx.sh b/ltcf-cxx.sh index 4b8913b..fad6a4a 100644 --- a/ltcf-cxx.sh +++ b/ltcf-cxx.sh @@ -816,7 +816,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. |