diff options
author | Brad Smith <brad@cvs.openbsd.org> | 2004-01-03 07:16:26 +0000 |
---|---|---|
committer | Brad Smith <brad@cvs.openbsd.org> | 2004-01-03 07:16:26 +0000 |
commit | 30646c48275b73e0bea646451fb4329ba0b6818e (patch) | |
tree | cc5d77d0984fbe0a18e9f797021c4be572ff9f9c /gnu/usr.bin | |
parent | db4e2b3b3d384a4f46975337a4437a70a76685c0 (diff) |
sync the list of acceptable getopt_long options with reality.
Fixes PR 3623
From: binutils CVS 2.11 branch, based on rev 1.15.2.3
ok otto@
Diffstat (limited to 'gnu/usr.bin')
-rw-r--r-- | gnu/usr.bin/binutils/binutils/objcopy.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gnu/usr.bin/binutils/binutils/objcopy.c b/gnu/usr.bin/binutils/binutils/objcopy.c index c29ab70e1c2..e8473de15a6 100644 --- a/gnu/usr.bin/binutils/binutils/objcopy.c +++ b/gnu/usr.bin/binutils/binutils/objcopy.c @@ -1831,7 +1831,7 @@ strip_main (argc, argv) struct section_list *p; char *output_file = NULL; - while ((c = getopt_long (argc, argv, "b:i:I:j:K:N:s:O:d:F:L:G:R:SpgxXVvW:", + while ((c = getopt_long (argc, argv, "I:O:F:K:N:R:o:sSpdgxXhVv", strip_options, (int *) 0)) != EOF) { switch (c) @@ -1963,7 +1963,7 @@ copy_main (argc, argv) struct section_list *p; struct stat statbuf; - while ((c = getopt_long (argc, argv, "b:i:I:j:K:N:s:O:d:F:L:R:SpgxXVvW:", + while ((c = getopt_long (argc, argv, "b:i:I:j:K:N:s:O:d:F:L:G:R:SpgxXhVvW:", copy_options, (int *) 0)) != EOF) { switch (c) |