aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlan Modra <amodra@gmail.com>2002-01-26 12:25:21 +0000
committerAlan Modra <amodra@gmail.com>2002-01-26 12:25:21 +0000
commit9cb61eabc1602dbecf3c3aa58c568284e76e6d7d (patch)
tree31eb0039d11f8ffee492389d058ac2384952ff94
parente8eab623dff627368a5bbe077aad1caf908e8a29 (diff)
downloadgdb-9cb61eabc1602dbecf3c3aa58c568284e76e6d7d.zip
gdb-9cb61eabc1602dbecf3c3aa58c568284e76e6d7d.tar.gz
gdb-9cb61eabc1602dbecf3c3aa58c568284e76e6d7d.tar.bz2
* ldmain.c (main): Use full sentences to ease translation.
-rw-r--r--ld/ChangeLog4
-rw-r--r--ld/ldmain.c8
2 files changed, 9 insertions, 3 deletions
diff --git a/ld/ChangeLog b/ld/ChangeLog
index e18a447..a8aaba6 100644
--- a/ld/ChangeLog
+++ b/ld/ChangeLog
@@ -1,3 +1,7 @@
+2002-01-26 Christian Rose <menthos@menthos.com>
+
+ * ldmain.c (main): Use full sentences to ease translation.
+
2002-01-26 Nick Clifton <nickc@cambridge.redhat.com>
* po/fr.po: Updated version.
diff --git a/ld/ldmain.c b/ld/ldmain.c
index b2faec2..eac23ae 100644
--- a/ld/ldmain.c
+++ b/ld/ldmain.c
@@ -331,9 +331,11 @@ main (argc, argv)
if (trace_file_tries)
{
- info_msg (_("using %s linker script:\n"),
- saved_script_handle ? "external" : "internal");
- info_msg ("==================================================\n");
+ if (saved_script_handle)
+ info_msg (_("using external linker script:"));
+ else
+ info_msg (_("using internal linker script:"));
+ info_msg ("\n==================================================\n");
if (saved_script_handle)
{