summaryrefslogtreecommitdiff
path: root/cmake
diff options
context:
space:
mode:
authorPeter Wu <peter@lekensteyn.nl>2015-03-02 11:32:51 +0100
committerGerald Combs <gerald@wireshark.org>2015-03-25 14:32:00 +0000
commitffecd088dd48241e324ae413c7c90f9415a2e220 (patch)
tree4303985c4886699e8ad5e58fb164f20f69742385 /cmake
parentdbef80f5c723d63d174f645284dcd06cbddb3a48 (diff)
downloadwireshark-ffecd088dd48241e324ae413c7c90f9415a2e220.tar.gz
FindPOD: fix link to CSS
docbook/Makefile.am uses --stylesheet=ws.css too, without this change the generated HTML will point to the source directory... Change-Id: I351cb658c404a08655201933158f91765f8d9c35 Reviewed-on: https://code.wireshark.org/review/7503 Reviewed-by: Peter Wu <peter@lekensteyn.nl> Reviewed-by: Gerald Combs <gerald@wireshark.org>
Diffstat (limited to 'cmake')
-rw-r--r--cmake/modules/FindPOD.cmake2
1 files changed, 1 insertions, 1 deletions
diff --git a/cmake/modules/FindPOD.cmake b/cmake/modules/FindPOD.cmake
index c7bc5f9ef5..23e1a57382 100644
--- a/cmake/modules/FindPOD.cmake
+++ b/cmake/modules/FindPOD.cmake
@@ -56,7 +56,7 @@ MACRO(pod2manhtml _sourcefile _manext)
COMMAND
${PERL_EXECUTABLE} ${POD2HTML_EXECUTABLE}
--title="${_basefile} - The Wireshark Network Analyzer ${CPACK_PACKAGE_VERSION}"
- --css=${CMAKE_SOURCE_DIR}/docbook/ws.css
+ --css=ws.css
--noindex
${_sourcefile}.pod
> ${_outhtml}