mirror of git://gcc.gnu.org/git/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
This commit is contained in:
parent
99776ebd5b
commit
9696698a51
|
@ -4,6 +4,9 @@
|
||||||
* configure.ac: Disable libitm if c++ is not enabled.
|
* configure.ac: Disable libitm if c++ is not enabled.
|
||||||
* configure: Rebuild.
|
* configure: Rebuild.
|
||||||
|
|
||||||
|
* configure.ac: Fix regexp for same.
|
||||||
|
* configure: Rebuild.
|
||||||
|
|
||||||
2012-01-02 Balaji V. Iyer <bviyer@gmail.com>
|
2012-01-02 Balaji V. Iyer <bviyer@gmail.com>
|
||||||
|
|
||||||
* MAINTAINERS (Write After Approval): Add myself.
|
* MAINTAINERS (Write After Approval): Add myself.
|
||||||
|
|
|
@ -6475,7 +6475,7 @@ esac
|
||||||
|
|
||||||
# Disable libitm if we're not building C++
|
# Disable libitm if we're not building C++
|
||||||
case ,${enable_languages}, in
|
case ,${enable_languages}, in
|
||||||
*,c++) ;;
|
*,c++,*) ;;
|
||||||
*)
|
*)
|
||||||
noconfigdirs="$noconfigdirs target-libitm"
|
noconfigdirs="$noconfigdirs target-libitm"
|
||||||
;;
|
;;
|
||||||
|
|
|
@ -1984,7 +1984,7 @@ esac
|
||||||
|
|
||||||
# Disable libitm if we're not building C++
|
# Disable libitm if we're not building C++
|
||||||
case ,${enable_languages}, in
|
case ,${enable_languages}, in
|
||||||
*,c++) ;;
|
*,c++,*) ;;
|
||||||
*)
|
*)
|
||||||
noconfigdirs="$noconfigdirs target-libitm"
|
noconfigdirs="$noconfigdirs target-libitm"
|
||||||
;;
|
;;
|
||||||
|
|
Loading…
Reference in New Issue