From patchwork Fri Aug 5 13:11:05 2011 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: Fix regression with unexistent symbol 'fullbinfile' From: Alexandre Lissy X-Patchwork-Id: 108649 Message-Id: <1312549865-15740-2-git-send-email-alissy@mandriva.com> To: gcc-patches@gcc.gnu.org Cc: gcc-melt@googlegroups.com, Alexandre Lissy Date: Fri, 5 Aug 2011 15:11:05 +0200 This symbol has been changed to binbase a couple of commits ago, yet some places remained untouched for the new name. --- gcc/melt-runtime.c | 10 +++++----- 1 files changed, 5 insertions(+), 5 deletions(-) diff --git a/gcc/melt-runtime.c b/gcc/melt-runtime.c index 32a4288..ad49ccb 100644 --- a/gcc/melt-runtime.c +++ b/gcc/melt-runtime.c @@ -5044,13 +5044,13 @@ melt_run_make_for_plugin (const char*ourmakecommand, const char*ourmakefile, con melt_fatal_error ("MELT module compilation failed for command %s", cmdstr); cmdstr = NULL; obstack_free (&cmd_obstack, NULL); /* free all the cmd_obstack */ - debugeprintf ("melt_run_make_for_plugin meltplugin did built fullbinfile %s", - fullbinfile); - if (IS_ABSOLUTE_PATH (fullbinfile)) - inform (UNKNOWN_LOCATION, "MELT plugin has built module %s", fullbinfile); + debugeprintf ("melt_run_make_for_plugin meltplugin did built binbase %s", + binbase); + if (IS_ABSOLUTE_PATH (binbase)) + inform (UNKNOWN_LOCATION, "MELT plugin has built module %s", binbase); else inform (UNKNOWN_LOCATION, "MELT plugin has built module %s in %s", - fullbinfile, mycwd); + binbase, mycwd); return; }