aboutsummaryrefslogtreecommitdiff
path: root/ld/ld.texinfo
diff options
context:
space:
mode:
authorJim Blandy <jimb@codesourcery.com>2000-02-29 03:28:57 +0000
committerJim Blandy <jimb@codesourcery.com>2000-02-29 03:28:57 +0000
commit765b7cbe0561bba08a4d4e2467cb6ba266f282f3 (patch)
tree7c79dcc79f7df615195f875e4d54e7bee88a2f9f /ld/ld.texinfo
parent06795fb52ded1f26e339da2a59f95048408c5882 (diff)
downloadfsf-binutils-gdb-765b7cbe0561bba08a4d4e2467cb6ba266f282f3.zip
fsf-binutils-gdb-765b7cbe0561bba08a4d4e2467cb6ba266f282f3.tar.gz
fsf-binutils-gdb-765b7cbe0561bba08a4d4e2467cb6ba266f282f3.tar.bz2
* ldgram.y (exclude_name_list): Don't require a comma to separate
list entries; the lexer considers commas to be valid part of a filename, so in something like `foo, bar' the comma is considered part of the first filename, `foo,'. * ld.texinfo: Update section on EXCLUDE_FILE lists.
Diffstat (limited to 'ld/ld.texinfo')
-rw-r--r--ld/ld.texinfo6
1 files changed, 3 insertions, 3 deletions
diff --git a/ld/ld.texinfo b/ld/ld.texinfo
index 8ecdef2..6662ca3 100644
--- a/ld/ld.texinfo
+++ b/ld/ld.texinfo
@@ -2255,10 +2255,10 @@ of files from matching the file name wildcard, EXCLUDE_FILE may be used to
match all files except the ones specified in the EXCLUDE_FILE list. For
example:
@smallexample
-(*(EXCLUDE_FILE (*crtend.o, *otherfile.o) .ctors))
+(*(EXCLUDE_FILE (*crtend.o *otherfile.o) .ctors))
@end smallexample
-will cause all .ctors sections from all files except crtend.o and otherfile.o
-to be included.
+will cause all .ctors sections from all files except @file{crtend.o} and
+@file{otherfile.o} to be included.
There are two ways to include more than one section:
@smallexample