diff options
author | msokolov <msokolov@138bc75d-0d04-0410-961f-82ee72b054a4> | 2001-01-26 22:55:12 +0000 |
---|---|---|
committer | msokolov <msokolov@138bc75d-0d04-0410-961f-82ee72b054a4> | 2001-01-26 22:55:12 +0000 |
commit | db45c2a0f7ef7230cd4f51f3bf518dfeb02153a7 (patch) | |
tree | 9dea0107e9a6bd2494b891718a04234755dcfd11 /ltcf-cxx.sh | |
parent | d1d79e87e16cfa433c7f0dab99c4e06def844db0 (diff) | |
download | gcc-db45c2a0f7ef7230cd4f51f3bf518dfeb02153a7.tar.gz |
* ltcf-cxx.sh: Use parentheses around eval $ac_compile.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@39288 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'ltcf-cxx.sh')
-rw-r--r-- | ltcf-cxx.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ltcf-cxx.sh b/ltcf-cxx.sh index 4b8913b14e5..fad6a4ae552 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. |