Skip to content
Snippets Groups Projects
Commit 8265ff2c authored by Dmitry Simonenko's avatar Dmitry Simonenko
Browse files

default CMAKE_SYSCONF_DIR and CMAKE_LOCALSTATE_DIR prefixes fix.

parent 11d8e0d2
No related branches found
No related tags found
No related merge requests found
......@@ -175,10 +175,10 @@ include_directories("${PROJECT_SOURCE_DIR}/connector/c/tntnet/include")
# Specify prefixes
#
if (NOT DEFINED CMAKE_SYSCONF_DIR)
set (CMAKE_SYSCONF_DIR "${CMAKE_INSTALL_PREFIX}/etc")
set (CMAKE_SYSCONF_DIR "etc")
endif()
if (NOT DEFINED CMAKE_LOCALSTATE_DIR)
set (CMAKE_LOCALSTATE_DIR "${CMAKE_INSTALL_PREFIX}/var")
set (CMAKE_LOCALSTATE_DIR "var")
endif()
#
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment