mirror of
https://github.com/yann64/haikuports.git
synced 2026-04-08 21:00:05 +02:00
23 lines
748 B
Plaintext
23 lines
748 B
Plaintext
From 4f4d19c0737ee2a9e6cd88aa734794bb1e03ff7e Mon Sep 17 00:00:00 2001
|
|
From: Schrijvers Luc <begasus@gmail.com>
|
|
Date: Wed, 22 May 2024 10:31:36 +0200
|
|
Subject: Fix hardcoded "share" path
|
|
|
|
|
|
diff --git a/CMakeLists.txt b/CMakeLists.txt
|
|
index e22c70a..39811aa 100644
|
|
--- a/CMakeLists.txt
|
|
+++ b/CMakeLists.txt
|
|
@@ -168,7 +168,7 @@ endif()
|
|
set(WITH_DATAROOTDIR ${WITH_DATAROOTDIR_DEFAULT} CACHE STRING
|
|
"data root directory relative to CMAKE_INSTALL_PREFIX")
|
|
if(BUILD_KDE_APP)
|
|
- set(WITH_DBUSDIR "share/dbus-1/interfaces" CACHE STRING
|
|
+ set(WITH_DBUSDIR "${WITH_DATAROOTDIR_DEFAULT}/dbus-1/interfaces" CACHE STRING
|
|
"dbus directory relative to CMAKE_INSTALL_PREFIX")
|
|
endif()
|
|
set(WITH_DOCDIR ${WITH_DOCDIR_DEFAULT} CACHE STRING
|
|
--
|
|
2.45.2
|
|
|