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 | 4cc5853ded8aaba0742e59459dcde42844e241d2 (patch) | |
tree | f4361e580cd82d93ac859d91b52680e450b83458 | |
parent | 7487e485993880d2ec6f6e233b9889f28c904973 (diff) | |
download | gdb-4cc5853ded8aaba0742e59459dcde42844e241d2.zip gdb-4cc5853ded8aaba0742e59459dcde42844e241d2.tar.gz gdb-4cc5853ded8aaba0742e59459dcde42844e241d2.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. |