From 48f5f0e52f87b35f9f77987c8a699dab48ff9256 Mon Sep 17 00:00:00 2001 From: ncaq Date: Thu, 8 Jul 2021 14:37:13 +0900 Subject: [PATCH] fixed: CMAKE_INSTALL_FULL_LIBDIR -> CMAKE_INSTALL_FULL_LIBEXECDIR MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Because, It must equal GRIVE_SYNC_SH_BINARY and actual grive-sync.sh path. I patched my gentoo overlay ebuild. [added: grive: libexec patch ยท ncaq/ncaq-overlay@ed3354f](https://github.com/ncaq/ncaq-overlay/commit/ed3354fbb704b78cfc5a1779036ce444fde40933) --- systemd/CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/systemd/CMakeLists.txt b/systemd/CMakeLists.txt index 6de3e45..36d6d22 100644 --- a/systemd/CMakeLists.txt +++ b/systemd/CMakeLists.txt @@ -23,5 +23,5 @@ install( PROGRAMS grive-sync.sh DESTINATION - ${CMAKE_INSTALL_FULL_LIBDIR}/grive + ${CMAKE_INSTALL_FULL_LIBEXECDIR}/grive )