diff options
author | Nick Clifton <nickc@redhat.com> | 1999-06-09 05:35:55 +0000 |
---|---|---|
committer | Nick Clifton <nickc@redhat.com> | 1999-06-09 05:35:55 +0000 |
commit | f75692fe1a49a64634c3ee2e95b007446de0db8a (patch) | |
tree | 4f5b51425038c38460dfef41ef73a3287a6699df /ld | |
parent | 2bdba6c9ec9f69ced92ed8a314cf53f420adba2a (diff) | |
download | gdb-f75692fe1a49a64634c3ee2e95b007446de0db8a.zip gdb-f75692fe1a49a64634c3ee2e95b007446de0db8a.tar.gz gdb-f75692fe1a49a64634c3ee2e95b007446de0db8a.tar.bz2 |
restore previous format of --help output
Diffstat (limited to 'ld')
-rw-r--r-- | ld/ChangeLog | 4 | ||||
-rw-r--r-- | ld/lexsup.c | 6 |
2 files changed, 8 insertions, 2 deletions
diff --git a/ld/ChangeLog b/ld/ChangeLog index 2c43e02..98bfa8e 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 5557cce..a990693 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"); |