From ba84827ad5019bf0ccdfa8ad976f2fbcb493f501 Mon Sep 17 00:00:00 2001 From: Stefan Ritt Date: Tue, 1 Oct 2019 08:21:55 +0200 Subject: [PATCH] Fixed wrong launchctl commands --- CMakeLists.txt | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 3e8e7656..c420d89a 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -132,12 +132,12 @@ install(FILES ${CMAKE_SOURCE_DIR}/elogd.cfg.example if (${CMAKE_SYSTEM_NAME} MATCHES Darwin) install(FILES ${CMAKE_SOURCE_DIR}/elogd.plist - DESTINATION /Library/LaunchDaemons/ch.psi.chelogd.plist) + DESTINATION /Library/LaunchDaemons/ch.psi.elogd.plist) install(CODE "message(\"\nThe elogd servie can be started with:\")") -install(CODE "message(\"$ sudo launchctl load /Library/LaunchDaemons/ch.psi.ch.elogd.plist\n\")") +install(CODE "message(\"$ sudo launchctl load /Library/LaunchDaemons/ch.psi.elogd.plist\n\")") #install(CODE "execute_process(COMMAND ${CMAKE_COMMAND} -E cmake_echo_color --cyan -# \"$ sudo launchctl load /Library/LaunchDaemons/ch.psi.ch.elogd.plist\")") +# \"$ sudo launchctl load /Library/LaunchDaemons/ch.psi.elogd.plist\")") endif()