diff options
author | Jeroen Roovers <jer@gentoo.org> | 2012-05-01 18:32:57 (GMT) |
---|---|---|
committer | Thomas Graf <tgraf@redhat.com> | 2012-05-07 12:54:42 (GMT) |
commit | d726ecd2d73bcc27454a62a587030ac2206ebbb2 (patch) | |
tree | 64b6d4694dbe0644a8470e12fa1daa549f82f392 /doc | |
parent | ad5d2b7738e053066f91b355dbdfc2e885f764df (diff) | |
download | libnl-d726ecd2d73bcc27454a62a587030ac2206ebbb2.zip libnl-d726ecd2d73bcc27454a62a587030ac2206ebbb2.tar.gz libnl-d726ecd2d73bcc27454a62a587030ac2206ebbb2.tar.bz2 |
Fix two bugs in 3.2.8/doc/
doc/Doxyfile.in:
Refer to @top_srcdir@ instead of @src_dir@
doc/Makefile.in:
Set .PHONY to api_ref instead of api_refs
http://sources.gentoo.org/cgi-bin/viewvc.cgi/gentoo-x86/dev-libs/libnl/files/
Cheers,
jer
Diffstat (limited to 'doc')
-rw-r--r-- | doc/Doxyfile.in | 2 | ||||
-rw-r--r-- | doc/Makefile.am | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/doc/Doxyfile.in b/doc/Doxyfile.in index c183abd..8bb4fd5 100644 --- a/doc/Doxyfile.in +++ b/doc/Doxyfile.in @@ -590,7 +590,7 @@ WARN_LOGFILE = INPUT = @top_srcdir@/lib \ @top_srcdir@/src/lib \ @top_srcdir@/include/netlink \ - @srcdir@/src + @top_srcdir@/src # This tag can be used to specify the character encoding of the source files # that doxygen parses. Internally doxygen uses the UTF-8 encoding, which is diff --git a/doc/Makefile.am b/doc/Makefile.am index 9b964b5..6f574dd 100644 --- a/doc/Makefile.am +++ b/doc/Makefile.am @@ -1,6 +1,6 @@ # -*- Makefile -*- -.PHONY: gendoc api_refs asciidoc +.PHONY: gendoc api_ref asciidoc ASCIIDOCOPTS=-a pygments -a language=c -a icons \ -a toc2 \ |