summaryrefslogtreecommitdiff
path: root/ld
diff options
context:
space:
mode:
authorNick Clifton <nickc@redhat.com>1999-06-09 05:35:55 +0000
committerNick Clifton <nickc@redhat.com>1999-06-09 05:35:55 +0000
commit099bef02886a692f49632419581c31d4fd4708dc (patch)
treef546f4df4ddcabff138d07cab82b004b529794ae /ld
parent41fa6443ed9ff6ef9ca8f6d71fe2d32b479b8006 (diff)
downloadbinutils-redhat-099bef02886a692f49632419581c31d4fd4708dc.tar.gz
restore previous format of --help output
Diffstat (limited to 'ld')
-rw-r--r--ld/ChangeLog4
-rw-r--r--ld/lexsup.c6
2 files changed, 8 insertions, 2 deletions
diff --git a/ld/ChangeLog b/ld/ChangeLog
index 2c43e0217e..98bfa8eae5 100644
--- a/ld/ChangeLog
+++ b/ld/ChangeLog
@@ -1,3 +1,7 @@
+1999-06-09 Nick Clifton <nickc@cygnus.com>
+
+ * lexsup.c (help): Restore previous format of output.
+
1999-06-04 Nick Clifton <nickc@cygnus.com>
* emultempl/pe.em: If compiling for arm_epoc_pe rename
diff --git a/ld/lexsup.c b/ld/lexsup.c
index 5557cceada..a990693d33 100644
--- a/ld/lexsup.c
+++ b/ld/lexsup.c
@@ -1118,8 +1118,10 @@ help ()
}
}
+ /* Note: Various tools (such as libtool) depend upon the
+ format of the listings below - do not change them. */
/* xgettext:c-format */
- printf (_("%s: supported targets:\n "), program_name);
+ printf (_("%s: supported targets:"), program_name);
targets = bfd_target_list ();
for (pp = targets; *pp != NULL; pp++)
printf (" %s", *pp);
@@ -1127,7 +1129,7 @@ help ()
printf ("\n");
/* xgettext:c-format */
- printf (_("%s: supported emulations:\n "), program_name);
+ printf (_("%s: supported emulations: "), program_name);
ldemul_list_emulations (stdout);
printf ("\n");