Skip to content

Commit

Permalink
* configure.ac: Don't bootstrap libmpx unless --with-build-config
Browse files Browse the repository at this point in the history
	includes bootstrap-mpx.
	* configure: Regenerated.


git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@243849 138bc75d-0d04-0410-961f-82ee72b054a4
  • Loading branch information
jakub committed Dec 21, 2016
1 parent f14eeb9 commit 08814ca
Show file tree
Hide file tree
Showing 3 changed files with 20 additions and 4 deletions.
6 changes: 6 additions & 0 deletions ChangeLog
Original file line number Diff line number Diff line change
@@ -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.
Expand Down
9 changes: 7 additions & 2 deletions configure
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
9 changes: 7 additions & 2 deletions configure.ac
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down

0 comments on commit 08814ca

Please sign in to comment.