diff options
author | Johnathan Corgan <johnathan@corganlabs.com> | 2013-07-09 16:59:20 -0700 |
---|---|---|
committer | Johnathan Corgan <johnathan@corganlabs.com> | 2013-07-09 16:59:20 -0700 |
commit | ab2e96d23f3da68783ee4f98452bd2e8ee7bc55f (patch) | |
tree | b935db73598ff152cd4001c2a9783a0a4cc470c0 | |
parent | 61d88983fbe8ba7822f227efc57aa98fa287c87b (diff) |
cmake: fix to allow reconfiguring install prefix
-rw-r--r-- | CMakeLists.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index cf82c9a8c2..6dc6c88b42 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -125,7 +125,7 @@ string(COMPARE EQUAL ${CMAKE_INSTALL_PREFIX} "/usr" isusr) if(isusr) set(SYSCONFDIR "/${GR_CONF_DIR}" CACHE PATH "System configuration directory") else(isusr) - set(SYSCONFDIR "${CMAKE_INSTALL_PREFIX}/${GR_CONF_DIR}" CACHE PATH "System configuration directory") + set(SYSCONFDIR "${CMAKE_INSTALL_PREFIX}/${GR_CONF_DIR}" CACHE PATH "System configuration directory" FORCE) endif(isusr) set(GR_PREFSDIR ${SYSCONFDIR}/${CMAKE_PROJECT_NAME}/conf.d) |