diff options
author | Richard Henderson <rth@redhat.com> | 2012-01-04 18:25:04 -0800 |
---|---|---|
committer | Richard Henderson <rth@gcc.gnu.org> | 2012-01-04 18:25:04 -0800 |
commit | 9696698a51c8c0eabf0552d12e56c9dedbdf329a (patch) | |
tree | e5552212216e95e9de59b0484dbc37266861d4cf | |
parent | 99776ebd5b998562662bc8fd054d20865751a8fa (diff) | |
download | gcc-9696698a51c8c0eabf0552d12e56c9dedbdf329a.zip gcc-9696698a51c8c0eabf0552d12e56c9dedbdf329a.tar.gz gcc-9696698a51c8c0eabf0552d12e56c9dedbdf329a.tar.bz2 |
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
-rw-r--r-- | ChangeLog | 3 | ||||
-rwxr-xr-x | configure | 2 | ||||
-rw-r--r-- | configure.ac | 2 |
3 files changed, 5 insertions, 2 deletions
@@ -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. @@ -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 b97c505..57d5382 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" ;; |