From: Eric Botcazou Date: Thu, 19 Nov 2015 13:32:54 +0000 (+0000) Subject: re PR lto/61313 (configure incorrectly strips $target_alias from PLUGIN_LD_SUFFIX) X-Git-Tag: releases/gcc-4.9.4~501 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=4f877c62068bfbea16957acf44ee18e76d0138c1;p=thirdparty%2Fgcc.git re PR lto/61313 (configure incorrectly strips $target_alias from PLUGIN_LD_SUFFIX) PR lto/61313 * configure.ac (PLUGIN_LD_SUFFIX): Do not touch the value specified by the user. * configure: Regenerate. From-SVN: r230605 --- diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 13fc08377196..5f98cb5a3d38 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,10 @@ +2015-11-19 Eric Botcazou + + PR lto/61313 + * configure.ac (PLUGIN_LD_SUFFIX): Do not touch the value specified + by the user. + * configure: Regenerate. + 2015-11-19 Eric Botcazou PR target/68408 diff --git a/gcc/configure b/gcc/configure index df63aa569549..f051b2b382dc 100755 --- a/gcc/configure +++ b/gcc/configure @@ -21552,7 +21552,7 @@ fi if test "${with_plugin_ld+set}" = set; then : withval=$with_plugin_ld; if test x"$withval" != x; then ORIGINAL_PLUGIN_LD_FOR_TARGET="$withval" - PLUGIN_LD_SUFFIX=`echo $withval | sed -e "s,$target_alias-,,"` + PLUGIN_LD_SUFFIX="$withval" fi fi diff --git a/gcc/configure.ac b/gcc/configure.ac index 8488c2d5ab2e..0e9bf7e6dff7 100644 --- a/gcc/configure.ac +++ b/gcc/configure.ac @@ -2098,7 +2098,7 @@ AC_ARG_WITH(plugin-ld, [AS_HELP_STRING([[--with-plugin-ld=[ARG]]], [specify the plugin linker])], [if test x"$withval" != x; then ORIGINAL_PLUGIN_LD_FOR_TARGET="$withval" - PLUGIN_LD_SUFFIX=`echo $withval | sed -e "s,$target_alias-,,"` + PLUGIN_LD_SUFFIX="$withval" fi]) AC_SUBST(ORIGINAL_PLUGIN_LD_FOR_TARGET) AC_DEFINE_UNQUOTED(PLUGIN_LD_SUFFIX, "$PLUGIN_LD_SUFFIX", [Specify plugin linker])