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 /configure.ac | |
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
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 2 |
1 files changed, 1 insertions, 1 deletions
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" ;; |