From: Richard Henderson Date: Thu, 5 Jan 2012 02:25:04 +0000 (-0800) Subject: re PR libitm/51072 (Build with --disable-bootstrap fails in libitm) X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=9696698a51c8c0eabf0552d12e56c9dedbdf329a;p=gcc.git re PR libitm/51072 (Build with --disable-bootstrap fails in libitm) PR bootstrap/51072 * configure.ac: Fix regexp for same. * configure: Rebuild. From-SVN: r182900 --- diff --git a/ChangeLog b/ChangeLog index a8019b354ce..93f24468069 100644 --- a/ChangeLog +++ b/ChangeLog @@ -4,6 +4,9 @@ * configure.ac: Disable libitm if c++ is not enabled. * configure: Rebuild. + * configure.ac: Fix regexp for same. + * configure: Rebuild. + 2012-01-02 Balaji V. Iyer * MAINTAINERS (Write After Approval): Add myself. diff --git a/configure b/configure index d970c1dc526..4d09cbeb7bd 100755 --- a/configure +++ b/configure @@ -6475,7 +6475,7 @@ esac # Disable libitm if we're not building C++ case ,${enable_languages}, in - *,c++) ;; + *,c++,*) ;; *) noconfigdirs="$noconfigdirs target-libitm" ;; diff --git a/configure.ac b/configure.ac index b97c5051044..57d5382a4c7 100644 --- a/configure.ac +++ b/configure.ac @@ -1984,7 +1984,7 @@ esac # Disable libitm if we're not building C++ case ,${enable_languages}, in - *,c++) ;; + *,c++,*) ;; *) noconfigdirs="$noconfigdirs target-libitm" ;;