From 9db560006f36ba22305a1d36895d5b98ac436a1a Mon Sep 17 00:00:00 2001 From: Juan Orti Alcaine Date: Wed, 3 Jul 2013 10:05:44 +0200 Subject: [PATCH 1/2] Fix json-c library path --- cmake/Modules/FindJSONC.cmake | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/cmake/Modules/FindJSONC.cmake b/cmake/Modules/FindJSONC.cmake index f72e8ea1..8e4f1fc9 100644 --- a/cmake/Modules/FindJSONC.cmake +++ b/cmake/Modules/FindJSONC.cmake @@ -6,8 +6,8 @@ # JSONC_INCLUDE_DIR - The JSON-C include directory. # JSONC_LIBRARY - The JSON-C library to link against. -FIND_PATH(JSONC_INCLUDE_DIR json/json.h) -FIND_LIBRARY(JSONC_LIBRARY NAMES json) +FIND_PATH(JSONC_INCLUDE_DIR json-c/json.h) +FIND_LIBRARY(JSONC_LIBRARY NAMES json-c) IF (JSONC_INCLUDE_DIR AND JSONC_LIBRARY) SET(JSONC_FOUND TRUE) From 452b130b1baa32275bae211aeeda2a809e22ab58 Mon Sep 17 00:00:00 2001 From: Juan Orti Alcaine Date: Wed, 3 Jul 2013 11:07:13 +0200 Subject: [PATCH 2/2] bgrive tries to install grive man page --- bgrive/CMakeLists.txt | 1 - 1 file changed, 1 deletion(-) diff --git a/bgrive/CMakeLists.txt b/bgrive/CMakeLists.txt index 074ab383..7bb32692 100644 --- a/bgrive/CMakeLists.txt +++ b/bgrive/CMakeLists.txt @@ -40,4 +40,3 @@ set_target_properties( bgrive_executable ) install(TARGETS bgrive_executable RUNTIME DESTINATION bin) -install(FILES doc/grive.1 DESTINATION share/man/man1 )