From 79bbe2d26cdc807f26974a04404d961d84f0591d Mon Sep 17 00:00:00 2001 From: Michael Pyne Date: Mon, 3 Oct 2011 16:58:34 -0400 Subject: [PATCH] Correct install path w/out KDE installed. teprrr on IRC noticed that the DATA_INSTALL_PATH was set wrong in CMakeLists.txt, when KDE4 was not found. --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index a56b3cc..b35cf1d 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -8,7 +8,7 @@ if (KDE4_FOUND) include(MacroLibrary) macro_optional_add_subdirectory(doc) else() - set(DATA_INSTALL_DIR "${CMAKE_INSTALL_PREFIX}/apps" CACHE PATH "The parent directory where applications can install their data") + set(DATA_INSTALL_DIR "${CMAKE_INSTALL_PREFIX}/share/apps" CACHE PATH "The parent directory where applications can install their data") set(BIN_INSTALL_DIR "${CMAKE_INSTALL_PREFIX}/bin" CACHE PATH "The install dir for executables") endif()