]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
re PR driver/46617 (String concatenation fools extraction for translation.)
authorPaolo Carlini <paolo.carlini@oracle.com>
Wed, 26 Oct 2011 00:50:11 +0000 (00:50 +0000)
committerPaolo Carlini <paolo@gcc.gnu.org>
Wed, 26 Oct 2011 00:50:11 +0000 (00:50 +0000)
2011-10-25  Paolo Carlini  <paolo.carlini@oracle.com>

PR translation/46617
* gcc.c (main): Fix fatal_error string for translation.

From-SVN: r180466

gcc/ChangeLog
gcc/gcc.c

index 593ac816f25bb15d70d5fa636826315c7ed510ea..8b32b982c0fcb387c2b5328ce05d367952151b38 100644 (file)
@@ -1,3 +1,8 @@
+2011-10-25  Paolo Carlini  <paolo.carlini@oracle.com>
+
+       PR translation/46617
+       * gcc.c (main): Fix fatal_error string for translation.
+
 2011-10-25  Ian Lance Taylor  <iant@google.com>
 
        * tree-eh.c (do_return_redirection): Remove return_value_p
index 3bfdf77b401939320137e4ae545aed0ea285cee3..0fd4edda28fe46188e41fa110c3dede45184bbf2 100644 (file)
--- a/gcc/gcc.c
+++ b/gcc/gcc.c
@@ -6851,7 +6851,7 @@ warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.\n\n"
                                                 LTOPLUGINSONAME, R_OK,
                                                 false);
          if (!linker_plugin_file_spec)
-           fatal_error ("-fuse-linker-plugin, but " LTOPLUGINSONAME " not found");
+           fatal_error ("-fuse-linker-plugin, but %s not found", LTOPLUGINSONAME);
        }
 #endif
       lto_gcc_spec = argv[0];