]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
configure.in (NO_MINUS_C_MINUS_O): Fix thinko in previous fix.
authorPhilippe De Muyter <phdm@macqel.be>
Tue, 23 May 2000 19:59:47 +0000 (21:59 +0200)
committerJeff Law <law@gcc.gnu.org>
Tue, 23 May 2000 19:59:47 +0000 (13:59 -0600)
        * configure.in (NO_MINUS_C_MINUS_O): Fix thinko in previous fix.
        * configure: Regenerated.

From-SVN: r34111

gcc/ChangeLog
gcc/configure
gcc/configure.in

index 54b7927619e34099d1e7798df01f869700d411d9..446dcae9d5377eb198d885cca4841e6ce0eb3d26 100644 (file)
@@ -1,3 +1,8 @@
+Tue May 23 13:58:52 2000  Philippe De Muyter  <phdm@macqel.be>
+
+       * configure.in (NO_MINUS_C_MINUS_O): Fix thinko in previous fix.
+       * configure: Regenerated.
+
 2000-05-23  Zack Weinberg  <zack@wolery.cumb.org>
 
        * simplify-rtx.c (SIGN_EXTEND): New macro.
index 90a8c585786283044f23e82a8f39651b2670db8f..bef7453e0a79b61be723d921401f1598de7ea77f 100755 (executable)
@@ -1302,7 +1302,7 @@ EOF
 
 fi
 
-if test $ac_cv_prog_cc_${ac_cc}_c_o = no; then
+if eval "test \"`echo '$ac_cv_prog_cc_'${ac_cc}_c_o`\" = no"; then
   NO_MINUS_C_MINUS_O=yes
 fi
 
index cd76141fba15b1fa0588a898e6aebacef02c5313..187fd2b0697ea80d45d0eae68895a9f608a01f4c 100644 (file)
@@ -322,7 +322,7 @@ AC_CANONICAL_SYSTEM
 # Find the native compiler
 AC_PROG_CC
 AC_PROG_CC_C_O
-if test $ac_cv_prog_cc_${ac_cc}_c_o = no; then
+if eval "test \"`echo '$ac_cv_prog_cc_'${ac_cc}_c_o`\" = no"; then
   NO_MINUS_C_MINUS_O=yes
 fi
 AC_SUBST(NO_MINUS_C_MINUS_O)