diff options
author | rth <rth@138bc75d-0d04-0410-961f-82ee72b054a4> | 2012-01-05 02:25:04 +0000 |
---|---|---|
committer | rth <rth@138bc75d-0d04-0410-961f-82ee72b054a4> | 2012-01-05 02:25:04 +0000 |
commit | 4f91566ff46f927ea9aa0d7b621bebbdb9d82a31 (patch) | |
tree | e5552212216e95e9de59b0484dbc37266861d4cf /configure | |
parent | b33ca042ba186f30ca27740719a9a7188f1fa419 (diff) | |
download | gcc-4f91566ff46f927ea9aa0d7b621bebbdb9d82a31.tar.gz |
PR bootstrap/51072
* configure.ac: Fix regexp for same.
* configure: Rebuild.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@182900 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 2 |
1 files changed, 1 insertions, 1 deletions
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" ;; |