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/doc | |
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/doc')
-rw-r--r-- | gcc/doc/plugins.texi | 2 |
1 files changed, 1 insertions, 1 deletions
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 |