diff options
author | Ted Gould <ted@gould.cx> | 2013-08-30 14:43:30 -0500 |
---|---|---|
committer | Ted Gould <ted@gould.cx> | 2013-08-30 14:43:30 -0500 |
commit | fc67bcd5aaa0823862951dc05a9c844c833e074b (patch) | |
tree | 9b1479fa5bad9d17b6336a87bcb919005f2ec1a1 | |
parent | 64ea3383c0e5c3a073078e565cace1bc7d5dbd9b (diff) | |
download | ayatana-greeter-session-broadcast-fc67bcd5aaa0823862951dc05a9c844c833e074b.tar.gz ayatana-greeter-session-broadcast-fc67bcd5aaa0823862951dc05a9c844c833e074b.tar.bz2 ayatana-greeter-session-broadcast-fc67bcd5aaa0823862951dc05a9c844c833e074b.zip |
Making sure the local install directory is correct
-rw-r--r-- | CMakeLists.txt | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index 327ffa8..c2e8001 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -40,11 +40,11 @@ pkg_check_modules(GIO_UNIX2 REQUIRED gio-unix-2.0) include_directories(${GIO_UNIX2_INCLUDE_DIRS}) if(${LOCAL_INSTALL}) - set(DBUSSERVICEDIR "${CMAKE_INSTALL_DATADIR}/dbus-1/services/") + set(DBUSSERVICEDIR "${CMAKE_INSTALL_DATADIR}/dbus-1/system-services/") else() EXEC_PROGRAM(${PKG_CONFIG_EXECUTABLE} ARGS dbus-1 --variable system_bus_services_dir OUTPUT_VARIABLE DBUSSERVICEDIR ) endif() -message("Installing DBus services to ${DBUSSERVICEDIR}") +message("Installing DBus system services to ${DBUSSERVICEDIR}") if(${LOCAL_INSTALL}) set(DBUSSYSCONFDIR "${CMAKE_INSTALL_SYSCONFDIR}") |