diff options
author | Max Kellermann <max@duempel.org> | 2010-07-25 14:02:10 +0200 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2010-07-25 14:02:10 +0200 |
commit | 12f4225d6ba6ecf2b989719a287f8ed1f7fb6bf5 (patch) | |
tree | a56514b12741845ff5817519fb1cf69ab0c1e6a4 /Makefile.am | |
parent | 50862a1dd1b93e2ef12b588a11d8d7cf3bf4075b (diff) | |
download | mpd-12f4225d6ba6ecf2b989719a287f8ed1f7fb6bf5.tar.gz mpd-12f4225d6ba6ecf2b989719a287f8ed1f7fb6bf5.tar.xz mpd-12f4225d6ba6ecf2b989719a287f8ed1f7fb6bf5.zip |
Makefile.am: fix out-of-tree doxygen call
This hack creates a copy of doc/doxygen.conf with the INPUT setting
replaced.
Diffstat (limited to '')
-rw-r--r-- | Makefile.am | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Makefile.am b/Makefile.am index 1a84cbbdf..ec38cf4ea 100644 --- a/Makefile.am +++ b/Makefile.am @@ -1102,7 +1102,8 @@ endif doc/api/html/index.html: doc/doxygen.conf @mkdir -p $(@D) - $(DOXYGEN) $< + [ "$(srcdir)" = "." ] || sed '/INPUT *=/ s/\([^ ]\+\/\)/$(subst /,\/,$(srcdir))\/\1/g' $(srcdir)/doc/doxygen.conf >doc/doxygen.conf + $(DOXYGEN) doc/doxygen.conf all-local: $(DOCBOOK_HTML) doc/api/html/index.html |