aboutsummaryrefslogtreecommitdiff
path: root/binutils/ar.c
diff options
context:
space:
mode:
authorNick Clifton <nickc@redhat.com>2009-06-19 15:05:23 +0000
committerNick Clifton <nickc@redhat.com>2009-06-19 15:05:23 +0000
commitd46fc8e83803954783e4791a975c78859b3d18de (patch)
tree2bb923545a3d5889594a01d30cc1f7bac19e3030 /binutils/ar.c
parent8e54f21078b822c1c36171e378244022e5715fe6 (diff)
downloadfsf-binutils-gdb-d46fc8e83803954783e4791a975c78859b3d18de.zip
fsf-binutils-gdb-d46fc8e83803954783e4791a975c78859b3d18de.tar.gz
fsf-binutils-gdb-d46fc8e83803954783e4791a975c78859b3d18de.tar.bz2
* ar.c (usage): Do not use #ifdef inside _("...).
* nm.c (usage): Likewise.
Diffstat (limited to 'binutils/ar.c')
-rw-r--r--binutils/ar.c8
1 files changed, 5 insertions, 3 deletions
diff --git a/binutils/ar.c b/binutils/ar.c
index 318cfe0..4d6a325 100644
--- a/binutils/ar.c
+++ b/binutils/ar.c
@@ -278,11 +278,13 @@ usage (int help)
fprintf (s, _("Usage: %s [options] archive\n"), program_name);
fprintf (s, _(" Generate an index to speed access to archives\n"));
fprintf (s, _(" The options are:\n\
- @<file> Read options from <file>\n"
+ @<file> Read options from <file>\n"));
#if BFD_SUPPORTS_PLUGINS
-" --plugin <name> Load the specified plugin\n"
+ fprintf (s, _("\
+ --plugin <name> Load the specified plugin\n"));
#endif
-" -t Update the archive's symbol map timestamp\n\
+ fprintf (s, _("\
+ -t Update the archive's symbol map timestamp\n\
-h --help Print this help message\n\
-v --version Print version information\n"));
}