mirror of git://gcc.gnu.org/git/gcc.git
configure.ac: Don't bootstrap libmpx unless --with-build-config includes bootstrap-mpx.
* configure.ac: Don't bootstrap libmpx unless --with-build-config includes bootstrap-mpx. * configure: Regenerated. From-SVN: r243849
This commit is contained in:
parent
db313371c7
commit
c21fdaa1a7
|
|
@ -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>
|
2016-12-19 Chenghua Xu <paul.hua.gm@gmail.com>
|
||||||
|
|
||||||
* MAINTAINERS (Write After Approval): Add myself.
|
* MAINTAINERS (Write After Approval): Add myself.
|
||||||
|
|
|
||||||
|
|
@ -7057,9 +7057,14 @@ if echo " ${target_configdirs} " | grep " libvtv " > /dev/null 2>&1 &&
|
||||||
bootstrap_target_libs=${bootstrap_target_libs}target-libvtv,
|
bootstrap_target_libs=${bootstrap_target_libs}target-libvtv,
|
||||||
fi
|
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
|
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
|
fi
|
||||||
|
|
||||||
# Determine whether gdb needs tk/tcl or not.
|
# Determine whether gdb needs tk/tcl or not.
|
||||||
|
|
|
||||||
|
|
@ -2643,9 +2643,14 @@ if echo " ${target_configdirs} " | grep " libvtv " > /dev/null 2>&1 &&
|
||||||
bootstrap_target_libs=${bootstrap_target_libs}target-libvtv,
|
bootstrap_target_libs=${bootstrap_target_libs}target-libvtv,
|
||||||
fi
|
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
|
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
|
fi
|
||||||
|
|
||||||
# Determine whether gdb needs tk/tcl or not.
|
# Determine whether gdb needs tk/tcl or not.
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue