diff options
author | Sébastien Helleu <flashcode@flashtux.org> | 2015-01-14 07:35:56 +0100 |
---|---|---|
committer | Sébastien Helleu <flashcode@flashtux.org> | 2015-01-14 07:35:56 +0100 |
commit | 66e0455951c245a8ac2d7b4bf0384e1d12405608 (patch) | |
tree | 1872c02dee55ca8190f253e5454989ebf53ed621 /doc/es | |
parent | fdcf46b476777e84f8959278fac4f443d2643fad (diff) | |
download | weechat-66e0455951c245a8ac2d7b4bf0384e1d12405608.zip |
doc: remove build of asciidoc CSS files
This fixes a compilation problem on Debian Squeeze where cmake (2.8.2) seems
to not work well with dependencies across different directories
(/doc and /doc/xx).
Diffstat (limited to 'doc/es')
-rw-r--r-- | doc/es/CMakeLists.txt | 2 | ||||
-rw-r--r-- | doc/es/Makefile.am | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/doc/es/CMakeLists.txt b/doc/es/CMakeLists.txt index 768071615..409896849 100644 --- a/doc/es/CMakeLists.txt +++ b/doc/es/CMakeLists.txt @@ -24,7 +24,7 @@ if(ENABLE_DOC AND SOURCEHIGHLIGHT_FOUND) OUTPUT ${CMAKE_CURRENT_BINARY_DIR}/weechat_quickstart.es.html COMMAND ${ASCIIDOC_EXECUTABLE} ARGS ${ASCIIDOC_ARGS_QUICKSTART} -o weechat_quickstart.es.html ${CMAKE_CURRENT_SOURCE_DIR}/weechat_quickstart.es.asciidoc DEPENDS - asciidoc-toc2-css + ${CMAKE_CURRENT_SOURCE_DIR}/../asciidoc_toc2.css ${CMAKE_CURRENT_SOURCE_DIR}/weechat_quickstart.es.asciidoc WORKING_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR} COMMENT "Building weechat_quickstart.es.html" diff --git a/doc/es/Makefile.am b/doc/es/Makefile.am index 546715277..40bef8f8b 100644 --- a/doc/es/Makefile.am +++ b/doc/es/Makefile.am @@ -35,8 +35,8 @@ endif all-local: $(man_targets) $(doc_targets) # quickstart -weechat_quickstart.es.html: weechat_quickstart.es.asciidoc - $(ASCIIDOC) -b html5 -a revision="$(VERSION)" -a stylesheet=$(abs_builddir)/../asciidoc_toc2.css -f $(abs_top_srcdir)/doc/asciidoc.conf -n -o weechat_quickstart.es.html $(abs_top_srcdir)/doc/es/weechat_quickstart.es.asciidoc +weechat_quickstart.es.html: weechat_quickstart.es.asciidoc $(abs_top_srcdir)/doc/asciidoc_toc2.css + $(ASCIIDOC) -b html5 -a revision="$(VERSION)" -a stylesheet=$(abs_top_srcdir)/doc/asciidoc_toc2.css -f $(abs_top_srcdir)/doc/asciidoc.conf -n -o weechat_quickstart.es.html $(abs_top_srcdir)/doc/es/weechat_quickstart.es.asciidoc # install man/docs |