diff options
author | jakub <jakub@138bc75d-0d04-0410-961f-82ee72b054a4> | 2016-12-21 11:28:40 +0000 |
---|---|---|
committer | jakub <jakub@138bc75d-0d04-0410-961f-82ee72b054a4> | 2016-12-21 11:28:40 +0000 |
commit | 08814ca403fd13006949ef44a9d855f2350eb793 (patch) | |
tree | 83fafe333e359a5a8e02482446c252b8e1ddd1f0 | |
parent | f14eeb9663015b43ec344e9b58df41a78e46abbf (diff) | |
download | gcc-08814ca403fd13006949ef44a9d855f2350eb793.tar.gz |
* configure.ac: Don't bootstrap libmpx unless --with-build-config
includes bootstrap-mpx.
* configure: Regenerated.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@243849 138bc75d-0d04-0410-961f-82ee72b054a4
-rw-r--r-- | ChangeLog | 6 | ||||
-rwxr-xr-x | configure | 9 | ||||
-rw-r--r-- | configure.ac | 9 |
3 files changed, 20 insertions, 4 deletions
diff --git a/ChangeLog b/ChangeLog index c97158a9699..2e35b0104aa 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +2016-12-21 Jakub Jelinek <jakub@redhat.com> + + * configure.ac: Don't bootstrap libmpx unless --with-build-config + includes bootstrap-mpx. + * configure: Regenerated. + 2016-12-19 Chenghua Xu <paul.hua.gm@gmail.com> * MAINTAINERS (Write After Approval): Add myself. diff --git a/configure b/configure index b6389e4718d..b8d60964a94 100755 --- a/configure +++ b/configure @@ -7057,9 +7057,14 @@ if echo " ${target_configdirs} " | grep " libvtv " > /dev/null 2>&1 && bootstrap_target_libs=${bootstrap_target_libs}target-libvtv, fi -# If we are building libmpx, bootstrap it. +# If we are building libmpx and $BUILD_CONFIG contains bootstrap-mpx, +# bootstrap it. if echo " ${target_configdirs} " | grep " libmpx " > /dev/null 2>&1; then - bootstrap_target_libs=${bootstrap_target_libs}target-libmpx, + case "$BUILD_CONFIG" in + *bootstrap-mpx* ) + bootstrap_target_libs=${bootstrap_target_libs}target-libmpx, + ;; + esac fi # Determine whether gdb needs tk/tcl or not. diff --git a/configure.ac b/configure.ac index 51ee70507cf..0d6efcfe3a2 100644 --- a/configure.ac +++ b/configure.ac @@ -2643,9 +2643,14 @@ if echo " ${target_configdirs} " | grep " libvtv " > /dev/null 2>&1 && bootstrap_target_libs=${bootstrap_target_libs}target-libvtv, fi -# If we are building libmpx, bootstrap it. +# If we are building libmpx and $BUILD_CONFIG contains bootstrap-mpx, +# bootstrap it. if echo " ${target_configdirs} " | grep " libmpx " > /dev/null 2>&1; then - bootstrap_target_libs=${bootstrap_target_libs}target-libmpx, + case "$BUILD_CONFIG" in + *bootstrap-mpx* ) + bootstrap_target_libs=${bootstrap_target_libs}target-libmpx, + ;; + esac fi # Determine whether gdb needs tk/tcl or not. |