diff options
author | Nick Clifton <nickc@redhat.com> | 2010-10-29 08:47:02 +0000 |
---|---|---|
committer | Nick Clifton <nickc@redhat.com> | 2010-10-29 08:47:02 +0000 |
commit | e58bcb8f099ec42b3c905480629d1a49dd38b03f (patch) | |
tree | 9a2d7d0bdc54bfc07183836db568c4af1ce2b70b /binutils/ar.c | |
parent | 2e7d562eb6929881e221ea01a0ff3481aa23960d (diff) | |
download | gdb-e58bcb8f099ec42b3c905480629d1a49dd38b03f.zip gdb-e58bcb8f099ec42b3c905480629d1a49dd38b03f.tar.gz gdb-e58bcb8f099ec42b3c905480629d1a49dd38b03f.tar.bz2 |
PR binutils/12058
* ar.c (usage): Revert previous change. Describe how 's' can be
used as a command letter.
* doc/binutils.texi (ar cmdline): Describe how 's' can be used as
a command letter.
Diffstat (limited to 'binutils/ar.c')
-rw-r--r-- | binutils/ar.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/binutils/ar.c b/binutils/ar.c index c2e6f4c..5fe43bc 100644 --- a/binutils/ar.c +++ b/binutils/ar.c @@ -230,9 +230,9 @@ usage (int help) /* xgettext:c-format */ const char * command_line = #if BFD_SUPPORTS_PLUGINS - _("Usage: %s [emulation options] [--plugin <name>] [-]{dmpqrtx}[abcfilNoPsSuvV] [member-name] [count] archive-file file...\n"); + _("Usage: %s [emulation options] [--plugin <name>] [-]{dmpqrstx}[abcfilNoPsSuvV] [member-name] [count] archive-file file...\n"); #else - _("Usage: %s [emulation options] [-]{dmpqrtx}[abcfilNoPsSuvV] [member-name] [count] archive-file file...\n"); + _("Usage: %s [emulation options] [-]{dmpqrstx}[abcfilNoPsSuvV] [member-name] [count] archive-file file...\n"); #endif fprintf (s, command_line, program_name); @@ -244,6 +244,7 @@ usage (int help) fprintf (s, _(" p - print file(s) found in the archive\n")); fprintf (s, _(" q[f] - quick append file(s) to the archive\n")); fprintf (s, _(" r[ab][f][u] - replace existing or insert new file(s) into the archive\n")); + fprintf (s, _(" s - act as ranlib\n")); fprintf (s, _(" t - display contents of archive\n")); fprintf (s, _(" x[o] - extract file(s) from the archive\n")); fprintf (s, _(" command specific modifiers:\n")); |