diff options
author | jlquinn <jlquinn@138bc75d-0d04-0410-961f-82ee72b054a4> | 2009-07-20 18:09:33 +0000 |
---|---|---|
committer | jlquinn <jlquinn@138bc75d-0d04-0410-961f-82ee72b054a4> | 2009-07-20 18:09:33 +0000 |
commit | 80b97ef3a76140a42e7afd767714096f1021d1de (patch) | |
tree | 43e4494cb58e912592695153252c528913b8a986 /libcpp/configure.ac | |
parent | ffbeca59aadc215e559e3dcac8ed918f1844dc8e (diff) | |
download | gcc-80b97ef3a76140a42e7afd767714096f1021d1de.tar.gz |
2009-07-20 Jerry Quinn <jlquinn@optonline.net>
PR regression/40800
* configure.ac: Use = instead of == for testing
ENABLE_BUILD_WITH_CXX.
* configure: Rebuild.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@149826 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'libcpp/configure.ac')
-rw-r--r-- | libcpp/configure.ac | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libcpp/configure.ac b/libcpp/configure.ac index a3ab8f551c3..6c397a98da2 100644 --- a/libcpp/configure.ac +++ b/libcpp/configure.ac @@ -42,7 +42,7 @@ ACX_PROG_CC_WARNINGS_ARE_ERRORS([manual]) # Dependency checking. ZW_CREATE_DEPDIR -if test "$ENABLE_BUILD_WITH_CXX" == "no"; then +if test "$ENABLE_BUILD_WITH_CXX" = "no"; then ZW_PROG_COMPILER_DEPENDENCIES([CC]) else ZW_PROG_COMPILER_DEPENDENCIES([CXX]) @@ -55,7 +55,7 @@ ACX_HEADER_STRING # AC_CHECK_HEADERS is repeated to work around apparent autoconf 2.59 bug. If # AC_CHECK_HEADERS comes after the if clause, the last AC_LANG call gets used, # no matter which branch is taken. -if test "$ENABLE_BUILD_WITH_CXX" == "no"; then +if test "$ENABLE_BUILD_WITH_CXX" = "no"; then AC_LANG(C) AC_CHECK_HEADERS(locale.h fcntl.h limits.h stddef.h \ stdlib.h strings.h string.h sys/file.h unistd.h) |