]> git.lizzy.rs Git - dragonfireclient.git/commitdiff
Set EXAMPLE_CONF_DIR to DOCDIR if DOCDIR gets customized
authorest31 <MTest31@outlook.com>
Wed, 16 Mar 2016 12:21:34 +0000 (13:21 +0100)
committerest31 <MTest31@outlook.com>
Wed, 16 Mar 2016 22:06:33 +0000 (23:06 +0100)
Before, customisation of DOCDIR did not lead to
changes of the EXAMPLE_CONF_DIR default value.
This was inconsistent with expected behaviour
if you didn't know of the existence of the
EXAMPLE_CONF_DIR variable. The confusion is
very strong, as (for not in place builds) both
DOCDIR and EXAMPLE_CONF_DIR share the same
default value, it is unexpected that setting
CUSTOM_DOCDIR changes the location of all
documentation files but one.

The best meaning of EXAMPLE_CONF_DIR is to
further allow customization of the mt.conf.example
storage place, but otherwise keep defaulting to
whatever DOCDIR is set to, at least for not in
place builds. This patch implements that
behaviour.

Fixes #3863.

CMakeLists.txt

index f8278522eb7a2b6abc2c46e39e6fec92f2012162..3f853f4dd057a7af68d77f1f4b2ec00e45d8cab0 100644 (file)
@@ -113,6 +113,9 @@ endif()
 set(CUSTOM_DOCDIR "" CACHE STRING "Directory to install documentation into")
 if(NOT CUSTOM_DOCDIR STREQUAL "")
        set(DOCDIR "${CUSTOM_DOCDIR}")
+       if(NOT RUN_IN_PLACE)
+               set(EXAMPLE_CONF_DIR ${DOCDIR})
+       endif()
        message(STATUS "Using DOCDIR=${DOCDIR}")
 endif()