]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
re PR driver/55202 (Building a combined tree is broken for LTO)
authorThomas Schwinge <thomas@codesourcery.com>
Thu, 20 Dec 2012 15:57:18 +0000 (16:57 +0100)
committerThomas Schwinge <tschwinge@gcc.gnu.org>
Thu, 20 Dec 2012 15:57:18 +0000 (16:57 +0100)
PR bootstrap/55202
* configure.ac <PLUGIN_LD_SUFFIX>: Use POSIX shell syntax.
* configure: Regenerate.

From-SVN: r194637

gcc/ChangeLog
gcc/configure
gcc/configure.ac

index 5c51847eb1531adf5031e8f66c0f730ce819ffb1..8708f8325d84ed2cc58c24deacd6edb37f910e1c 100644 (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
index e2c119e735a2b2ae99c4cc1ec0ad95051ac7d91b..f4f6593114d8e58e58982a8388157a4152e24bdf 100755 (executable)
@@ -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
 
index c6f57bd667ca006389deb018bb0cd0146348f49f..7abe7cf5b98ec2d475c7acaf7bc41f1ecb7d81d1 100644 (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,