re PR driver/55202 (Building a combined tree is broken for LTO)

PR bootstrap/55202
	* configure.ac <PLUGIN_LD_SUFFIX>: Use POSIX shell syntax.
	* configure: Regenerate.

From-SVN: r194637
This commit is contained in:
Thomas Schwinge 2012-12-20 16:57:18 +01:00 committed by Thomas Schwinge
parent 5ff3c4f398
commit 3cecbdfa22
3 changed files with 10 additions and 4 deletions

View File

@ -1,3 +1,9 @@
2012-12-20 Thomas Schwinge <thomas@codesourcery.com>
PR bootstrap/55202
* configure.ac <PLUGIN_LD_SUFFIX>: Use POSIX shell syntax.
* configure: Regenerate.
2012-12-20 Andreas Krebbel <Andreas.Krebbel@de.ibm.com>
PR target/55754

4
gcc/configure vendored
View File

@ -21381,8 +21381,8 @@ ORIGINAL_PLUGIN_LD_FOR_TARGET=$gcc_cv_ld
PLUGIN_LD_SUFFIX=`basename $gcc_cv_ld | sed -e "s,$target_alias-,,"`
# if the PLUGIN_LD is set ld-new, just have it as ld
# as that is the installed named.
if test x$PLUGIN_LD_SUFFIX == xld-new \
|| test x$PLUGIN_LD_SUFFIX == xcollect-ld ; then
if test x$PLUGIN_LD_SUFFIX = xld-new \
|| test x$PLUGIN_LD_SUFFIX = xcollect-ld ; then
PLUGIN_LD_SUFFIX=ld
fi

View File

@ -2031,8 +2031,8 @@ ORIGINAL_PLUGIN_LD_FOR_TARGET=$gcc_cv_ld
PLUGIN_LD_SUFFIX=`basename $gcc_cv_ld | sed -e "s,$target_alias-,,"`
# if the PLUGIN_LD is set ld-new, just have it as ld
# as that is the installed named.
if test x$PLUGIN_LD_SUFFIX == xld-new \
|| test x$PLUGIN_LD_SUFFIX == xcollect-ld ; then
if test x$PLUGIN_LD_SUFFIX = xld-new \
|| test x$PLUGIN_LD_SUFFIX = xcollect-ld ; then
PLUGIN_LD_SUFFIX=ld
fi
AC_ARG_WITH(plugin-ld,