diff options
author | Max Kellermann <max@duempel.org> | 2009-03-01 01:15:09 +0100 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2009-03-01 01:15:09 +0100 |
commit | c4626143c91602cd89e47160e92e9e19db331f65 (patch) | |
tree | 76cdd1d39008cd7ba315f59812373acbeab12e7d /Makefile.am | |
parent | 80571d1b5a5f35579ad8000add6e3abfc6faadef (diff) | |
download | mpd-c4626143c91602cd89e47160e92e9e19db331f65.tar.gz mpd-c4626143c91602cd89e47160e92e9e19db331f65.tar.xz mpd-c4626143c91602cd89e47160e92e9e19db331f65.zip |
Makefile.am: fixed xmlto output path
The output path must be ./doc/protocol/, not ./protocol/
Diffstat (limited to 'Makefile.am')
-rw-r--r-- | Makefile.am | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile.am b/Makefile.am index 63029b58f..8dae19bad 100644 --- a/Makefile.am +++ b/Makefile.am @@ -580,7 +580,7 @@ protocoldir = $(docdir)/protocol protocol_DATA = $(wildcard doc/protocol/*.html) $(DOCBOOK_HTML): %/index.html: %.xml - $(XMLTO) -o protocol --stringparam chunker.output.encoding=utf-8 html $< + $(XMLTO) -o $(@D) --stringparam chunker.output.encoding=utf-8 html $< doc/api/html/index.html: doc/doxygen.conf $(DOXYGEN) $< |