diff options
author | Roland McGrath <roland@hack.frob.com> | 2012-01-20 11:40:59 -0800 |
---|---|---|
committer | Roland McGrath <roland@hack.frob.com> | 2012-01-20 11:40:59 -0800 |
commit | 8592478d3bd1a021c0b51ace768b8ef944b13cf1 (patch) | |
tree | dd51295226734916ae5e3fd295130442b29d62c3 /src/ranlib.c | |
parent | b8ff18e0e8b8631fcc449cbd5a1ceba3f4a73e0d (diff) | |
download | elfutils-8592478d3bd1a021c0b51ace768b8ef944b13cf1.tar.gz |
Support -D in ranlib as in ar.
Diffstat (limited to 'src/ranlib.c')
-rw-r--r-- | src/ranlib.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/ranlib.c b/src/ranlib.c index e92dc89b..cf2f1270 100644 --- a/src/ranlib.c +++ b/src/ranlib.c @@ -1,5 +1,5 @@ /* Generate an index to speed access to archives. - Copyright (C) 2005, 2006, 2007, 2009 Red Hat, Inc. + Copyright (C) 2005-2012 Red Hat, Inc. This file is part of Red Hat elfutils. Written by Ulrich Drepper <drepper@redhat.com>, 2005. @@ -79,7 +79,7 @@ static const char args_doc[] = N_("ARCHIVE"); /* Data structure to communicate with argp functions. */ static const struct argp argp = { - options, NULL, args_doc, doc, NULL, NULL, NULL + options, NULL, args_doc, doc, arlib_argp_children, NULL, NULL }; |