This is the mail archive of the binutils@sourceware.org mailing list for the binutils project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

tweak ppc64 error messages


Applied mainline, probably not worth putting on the branch.

	* emultempl/ppc64elf.em (ppc_create_output_section_statements): Add
	missing colon to error message.
	(ppc_before_allocation): Likewise.

Index: ld/emultempl/ppc64elf.em
===================================================================
RCS file: /cvs/src/src/ld/emultempl/ppc64elf.em,v
retrieving revision 1.75
diff -u -p -r1.75 ppc64elf.em
--- ld/emultempl/ppc64elf.em	26 Jul 2011 01:57:18 -0000	1.75
+++ ld/emultempl/ppc64elf.em	8 Oct 2011 10:02:35 -0000
@@ -94,7 +94,7 @@ ppc_create_output_section_statements (vo
 			     bfd_get_arch (link_info.output_bfd),
 			     bfd_get_mach (link_info.output_bfd)))
     {
-      einfo ("%F%P: can not create BFD %E\n");
+      einfo ("%F%P: can not create BFD: %E\n");
       return;
     }
 
@@ -249,7 +249,7 @@ ppc_before_allocation (void)
     {
       if (!no_opd_opt
 	  && !ppc64_elf_edit_opd (&link_info, non_overlapping_opd))
-	einfo ("%X%P: can not edit %s %E\n", "opd");
+	einfo ("%X%P: can not edit %s: %E\n", "opd");
 
       if (ppc64_elf_tls_setup (&link_info, no_tls_get_addr_opt, &no_multi_toc)
 	  && !no_tls_opt)
@@ -268,7 +268,7 @@ ppc_before_allocation (void)
 	  prelim_size_sections ();
 
 	  if (!ppc64_elf_edit_toc (&link_info))
-	    einfo ("%X%P: can not edit %s %E\n", "toc");
+	    einfo ("%X%P: can not edit %s: %E\n", "toc");
 	}
 
       if (!no_toc_sort)

-- 
Alan Modra
Australia Development Lab, IBM


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]