diff options
author | Laurent Montel <montel@kde.org> | 2006-07-31 07:41:34 +0000 |
---|---|---|
committer | Laurent Montel <montel@kde.org> | 2006-07-31 07:41:34 +0000 |
commit | a1de59281e740bb0db157102f3d10187d55cbb07 (patch) | |
tree | d9ae26869d384e4df2f6b48fc15e01199da6d2b9 | |
parent | 4871635cbb45edfaa5334698a3dc9966b2260e09 (diff) | |
download | extra-cmake-modules-a1de59281e740bb0db157102f3d10187d55cbb07.tar.gz extra-cmake-modules-a1de59281e740bb0db157102f3d10187d55cbb07.tar.bz2 |
Fix pb when we relauch ccmake -D... ../
LIB_* variable was not changed
svn path=/trunk/KDE/kdelibs/; revision=568125
-rw-r--r-- | modules/FindKDE4Internal.cmake | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/FindKDE4Internal.cmake b/modules/FindKDE4Internal.cmake index dfc94fb0..60107461 100644 --- a/modules/FindKDE4Internal.cmake +++ b/modules/FindKDE4Internal.cmake @@ -197,7 +197,7 @@ include (CheckCXXCompilerFlag) ## the following are directories where stuff will be installed to set(BIN_INSTALL_DIR "${EXEC_INSTALL_PREFIX}/bin" CACHE PATH "The kde info install dir (default prefix/info)" FORCE) set(SBIN_INSTALL_DIR "${EXEC_INSTALL_PREFIX}/sbin" CACHE PATH "The kde info install dir (default prefix/info)" FORCE) - set(LIB_INSTALL_DIR "${EXEC_INSTALL_PREFIX}/lib" CACHE PATH "The subdirectory relative to the install prefix where libraries will be installed (default is /lib)") + set(LIB_INSTALL_DIR "${EXEC_INSTALL_PREFIX}/lib" CACHE PATH "The subdirectory relative to the install prefix where libraries will be installed (default is /lib)" FORCE) set(LIBEXEC_INSTALL_DIR "${LIB_INSTALL_DIR}/kde4/libexec" CACHE PATH "The subdirectory relative to the install prefix where libraries will be installed (default is /lib)" FORCE) set(PLUGIN_INSTALL_DIR "${LIB_INSTALL_DIR}/kde4" CACHE PATH "The subdirectory relative to the install prefix where plugins will be installed (default is ${KDE4_LIB_INSTALL_DIR}/kde4)" FORCE) set(INCLUDE_INSTALL_DIR "${CMAKE_INSTALL_PREFIX}/include" CACHE PATH "The subdirectory to the header prefix" FORCE) |