mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-04-16 19:16:42 +02:00
30 lines
876 B
Diff
30 lines
876 B
Diff
From acab836bfeed8354c0231462eaa932b7c2c9790e Mon Sep 17 00:00:00 2001
|
|
From: Clayton Craft <clayton@craftyguy.net>
|
|
Date: Tue, 8 Oct 2024 10:41:04 -0700
|
|
Subject: [PATCH 1/3] data/CMakeLists.txt: don't hardcode lib paths when
|
|
installing service files
|
|
|
|
---
|
|
data/CMakeLists.txt | 4 ++--
|
|
1 file changed, 2 insertions(+), 2 deletions(-)
|
|
|
|
diff --git a/data/CMakeLists.txt b/data/CMakeLists.txt
|
|
index 57be21a..b0c16fb 100644
|
|
--- a/data/CMakeLists.txt
|
|
+++ b/data/CMakeLists.txt
|
|
@@ -47,10 +47,10 @@ install(
|
|
|
|
install(
|
|
FILES ${CMAKE_CURRENT_BINARY_DIR}/lomiri-location-service.service
|
|
- DESTINATION /lib/systemd/system/
|
|
+ DESTINATION ${CMAKE_INSTALL_LIBDIR}/systemd/system/
|
|
)
|
|
|
|
install(
|
|
FILES ${CMAKE_CURRENT_BINARY_DIR}/lomiri-location-service-trust-stored.service
|
|
- DESTINATION /usr/lib/systemd/user/
|
|
+ DESTINATION ${CMAKE_INSTALL_LIBDIR}/systemd/user/
|
|
)
|
|
--
|
|
2.48.1
|
|
|