summaryrefslogtreecommitdiffstats
path: root/src/ld.c
diff options
context:
space:
mode:
authorUlrich Drepper <[email protected]>2008-01-20 03:29:25 +0000
committerUlrich Drepper <[email protected]>2008-01-20 03:29:25 +0000
commitc182f90bd79ac9954a17aaa7792aac3e8103851d (patch)
tree4cc5674dd26a460fe70f66671b46cbbee0799a2b /src/ld.c
parentb27ce0029031cec586ccd6b8ba1e26d3bccbcad9 (diff)
Fix memory leak in readelf.
Fix static linking in ld up a bit. Still not complete.
Diffstat (limited to 'src/ld.c')
-rw-r--r--src/ld.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/ld.c b/src/ld.c
index bede0e85..4ac3023a 100644
--- a/src/ld.c
+++ b/src/ld.c
@@ -88,8 +88,8 @@ static const struct argp_option options[] =
{ "no-whole-archive", ARGP_no_whole_archive, NULL, 0,
N_("Stop including the whole arhives in the output."), 0 },
{ NULL, 'l', N_("FILE"), OPTION_HIDDEN, NULL, 0 },
- { NULL, '(', NULL, 0, N_("Start a group."), 0 },
- { NULL, ')', NULL, 0, N_("End a group."), 0 },
+ { "start-group", '(', NULL, 0, N_("Start a group."), 0 },
+ { "end-group", ')', NULL, 0, N_("End a group."), 0 },
{ NULL, 'L', N_("PATH"), 0,
N_("Add PATH to list of directories files are searched in."), 0 },
{ "as-needed", ARGP_as_needed, NULL, 0,