re PR libitm/51072 (Build with --disable-bootstrap fails in libitm)
authorRichard Henderson <rth@redhat.com>
Thu, 5 Jan 2012 02:25:04 +0000 (18:25 -0800)
committerRichard Henderson <rth@gcc.gnu.org>
Thu, 5 Jan 2012 02:25:04 +0000 (18:25 -0800)
PR bootstrap/51072
        * configure.ac: Fix regexp for same.
        * configure: Rebuild.

From-SVN: r182900

ChangeLog
configure
configure.ac

index a8019b354ce3d7c1705048149071f4f12321879c..93f244680693ff6ea5694704bc5a92c0aa778265 100644 (file)
--- 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  <bviyer@gmail.com>
 
        * MAINTAINERS (Write After Approval): Add myself.
index d970c1dc526bd14f2f1fb19183ce12af0ddea410..4d09cbeb7bd449cadd4344eaf72bb97f0c4ee4c4 100755 (executable)
--- 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"
     ;;
index b97c5051044ca8252f463f6163f3e9ca24736ec5..57d5382a4c737a18b52261d684c859e63a533f30 100644 (file)
@@ -1984,7 +1984,7 @@ esac
 
 # Disable libitm if we're not building C++
 case ,${enable_languages}, in
-  *,c++) ;;
+  *,c++,*) ;;
   *)
     noconfigdirs="$noconfigdirs target-libitm"
     ;;