diff options
| author | Ulrich Drepper <[email protected]> | 2008-01-20 03:29:25 +0000 |
|---|---|---|
| committer | Ulrich Drepper <[email protected]> | 2008-01-20 03:29:25 +0000 |
| commit | c182f90bd79ac9954a17aaa7792aac3e8103851d (patch) | |
| tree | 4cc5674dd26a460fe70f66671b46cbbee0799a2b /src/ld.c | |
| parent | b27ce0029031cec586ccd6b8ba1e26d3bccbcad9 (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.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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, |
