diff options
author | Basile Starynkevitch <basile@starynkevitch.net> | 2009-06-25 08:22:21 +0000 |
---|---|---|
committer | Basile Starynkevitch <bstarynk@gcc.gnu.org> | 2009-06-25 08:22:21 +0000 |
commit | 3cb711674443e827e2ebc61a131590214d05c1bc (patch) | |
tree | d5d3a74bf5e6c5f148025ea86a7ceaf0856de090 /gcc | |
parent | d6533e74c21f3a830fc3511f4cd4707219938ab6 (diff) | |
download | gcc-3cb711674443e827e2ebc61a131590214d05c1bc.zip gcc-3cb711674443e827e2ebc61a131590214d05c1bc.tar.gz gcc-3cb711674443e827e2ebc61a131590214d05c1bc.tar.bz2 |
plugins.texi (Building GCC plugins): Corrected typo in Makefile excerpt - @ should be doubled for texinfo.
2009-06-25 Basile Starynkevitch <basile@starynkevitch.net>
* doc/plugins.texi (Building GCC plugins): Corrected typo in
Makefile excerpt - @ should be doubled for texinfo.
From-SVN: r148929
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/ChangeLog | 4 | ||||
-rw-r--r-- | gcc/doc/plugins.texi | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index b6cba29..ec235a0 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,7 @@ +2009-06-25 Basile Starynkevitch <basile@starynkevitch.net> + * doc/plugins.texi (Building GCC plugins): Corrected typo in + Makefile excerpt - @ should be doubled for texinfo. + 2009-06-24 Ian Lance Taylor <iant@google.com> * config/arc/arc.c: Include "df.h". diff --git a/gcc/doc/plugins.texi b/gcc/doc/plugins.texi index 791e04b..c5efc81 100644 --- a/gcc/doc/plugins.texi +++ b/gcc/doc/plugins.texi @@ -305,7 +305,7 @@ GCCPLUGINS_DIR:= $(shell $(GCC) -print-file-name=plugin) CFLAGS+= -I$(GCCPLUGINS_DIR)/include -fPIC -O2 plugin.so: $(PLUGIN_OBJECT_FILES) - $(GCC) -shared $^ -o $@ + $(GCC) -shared $^ -o $@@ @end smallexample A single source file plugin may be built with @code{gcc -I`gcc |