2001-07-11 H.J. Lu <hjl@gnu.org>

* ldmain.c (main): Fix typos in the last change.
This commit is contained in:
H.J. Lu 2001-07-11 19:50:56 +00:00
parent 20278fa326
commit e97cb84f5a
2 changed files with 6 additions and 2 deletions

View file

@ -1,3 +1,7 @@
2001-07-11 H.J. Lu <hjl@gnu.org>
* ldmain.c (main): Fix typos in the last change.
2001-07-11 Jakub Jelinek <jakub@redhat.com> 2001-07-11 Jakub Jelinek <jakub@redhat.com>
* ldmain.c (main): Disallow -F and -f without -shared. * ldmain.c (main): Disallow -F and -f without -shared.

View file

@ -276,9 +276,9 @@ main (argc, argv)
if (! link_info.shared) if (! link_info.shared)
{ {
if (command_line.filter_shlib) if (command_line.filter_shlib)
einfo ("%P%F: -F may not be used without -shared\n")); einfo (_("%P%F: -F may not be used without -shared\n"));
if (command_line.auxiliary_filters) if (command_line.auxiliary_filters)
einfo ("%P%F: -f may not be used without -shared\n")); einfo (_("%P%F: -f may not be used without -shared\n"));
} }
/* Treat ld -r -s as ld -r -S -x (i.e., strip all local symbols). I /* Treat ld -r -s as ld -r -S -x (i.e., strip all local symbols). I