diff options
author | Thomas Schwinge <thomas@codesourcery.com> | 2012-12-20 16:57:18 +0100 |
---|---|---|
committer | Thomas Schwinge <tschwinge@gcc.gnu.org> | 2012-12-20 16:57:18 +0100 |
commit | 3cecbdfa22c72f1c5bdbef6346567c9b82f69222 (patch) | |
tree | a1622d3bf32d8eaefc75f8fe23480c63e6aa1d95 /gcc | |
parent | 5ff3c4f398f344051ac0495ae9aecad7af83dd62 (diff) | |
download | gcc-3cecbdfa22c72f1c5bdbef6346567c9b82f69222.zip gcc-3cecbdfa22c72f1c5bdbef6346567c9b82f69222.tar.gz gcc-3cecbdfa22c72f1c5bdbef6346567c9b82f69222.tar.bz2 |
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
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/ChangeLog | 6 | ||||
-rwxr-xr-x | gcc/configure | 4 | ||||
-rw-r--r-- | gcc/configure.ac | 4 |
3 files changed, 10 insertions, 4 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 5c51847..8708f83 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -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 diff --git a/gcc/configure b/gcc/configure index e2c119e..f4f6593 100755 --- a/gcc/configure +++ b/gcc/configure @@ -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 diff --git a/gcc/configure.ac b/gcc/configure.ac index c6f57bd..7abe7cf 100644 --- a/gcc/configure.ac +++ b/gcc/configure.ac @@ -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, |