You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
1.1 KiB
29 lines
1.1 KiB
From 563cb938348d7bdd1db4aa861840e343b67bccec Mon Sep 17 00:00:00 2001
|
|
From: Lubomir Rintel <lkundrak@v3.sk>
|
|
Date: Wed, 5 Feb 2014 13:18:07 +0100
|
|
Subject: [PATCH] Fix include/libdir paths when they're absolute
|
|
|
|
Possibly only applies to our package build, not upstreamable as it is.
|
|
---
|
|
PolkitQt5-1Config.cmake.in | 4 ++--
|
|
1 file changed, 2 insertions(+), 2 deletions(-)
|
|
|
|
diff --git a/PolkitQt5-1Config.cmake.in b/PolkitQt5-1Config.cmake.in
|
|
index 14e1f73..f7caa8c 100644
|
|
--- a/PolkitQt5-1Config.cmake.in
|
|
+++ b/PolkitQt5-1Config.cmake.in
|
|
@@ -13,8 +13,8 @@ if(NOT POLKITQT-1_INSTALL_DIR)
|
|
set(POLKITQT-1_INSTALL_DIR "@CMAKE_INSTALL_PREFIX@")
|
|
endif(NOT POLKITQT-1_INSTALL_DIR)
|
|
|
|
-set(POLKITQT-1_INCLUDE_DIR "${POLKITQT-1_INSTALL_DIR}/@INCLUDE_INSTALL_DIR@/polkit-qt5-1")
|
|
-set(POLKITQT-1_LIB_DIR "${POLKITQT-1_INSTALL_DIR}/@LIB_INSTALL_DIR@")
|
|
+set(POLKITQT-1_INCLUDE_DIR "@INCLUDE_INSTALL_DIR@/polkit-qt5-1")
|
|
+set(POLKITQT-1_LIB_DIR "@LIB_INSTALL_DIR@")
|
|
set(POLKITQT-1_POLICY_FILES_INSTALL_DIR "${POLKITQT-1_INSTALL_DIR}/share/polkit-1/actions")
|
|
|
|
# Compatibility
|
|
--
|
|
1.8.5.3
|
|
|