aboutsummaryrefslogtreecommitdiff
path: root/ld
diff options
context:
space:
mode:
authorAlan Modra <amodra@gmail.com>2007-08-18 01:36:57 +0000
committerAlan Modra <amodra@gmail.com>2007-08-18 01:36:57 +0000
commitb4346c091b1deec0aabbefc2b9fcbd519c26bdea (patch)
treefcba94a45c93dc8685c577e65726a9b622939ec3 /ld
parentb9c34f673c60f5cea06adef594fb3a8967d50498 (diff)
downloadfsf-binutils-gdb-b4346c091b1deec0aabbefc2b9fcbd519c26bdea.zip
fsf-binutils-gdb-b4346c091b1deec0aabbefc2b9fcbd519c26bdea.tar.gz
fsf-binutils-gdb-b4346c091b1deec0aabbefc2b9fcbd519c26bdea.tar.bz2
* ld.texinfo (Input Section Basics): Correct EXCLUDE_FILE example.
Diffstat (limited to 'ld')
-rw-r--r--ld/ChangeLog4
-rw-r--r--ld/ld.texinfo2
2 files changed, 5 insertions, 1 deletions
diff --git a/ld/ChangeLog b/ld/ChangeLog
index 1f89ed2..537766c 100644
--- a/ld/ChangeLog
+++ b/ld/ChangeLog
@@ -1,3 +1,7 @@
+2007-08-18 Alan Modra <amodra@bigpond.net.au>
+
+ * ld.texinfo (Input Section Basics): Correct EXCLUDE_FILE example.
+
2007-08-17 Jakub Jelinek <jakub@redhat.com>
* configure.host: Handle sparcv*-*-linux-* the same as
diff --git a/ld/ld.texinfo b/ld/ld.texinfo
index f27c08c..4f4cb0b 100644
--- a/ld/ld.texinfo
+++ b/ld/ld.texinfo
@@ -3327,7 +3327,7 @@ 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 @file{crtend.o} and
@file{otherfile.o} to be included.