File: qt-system-paths.patch

package info (click to toggle)
gammaray 2.11.2-2
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 20,820 kB
  • sloc: cpp: 92,591; ansic: 1,186; sh: 141; python: 115; lex: 99; yacc: 90; xml: 57; makefile: 24
file content (23 lines) | stat: -rw-r--r-- 685 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
From: Dmitry Shachnev <mitya57@debian.org>
Date: Mon, 26 Aug 2019 17:31:09 +0300
Subject: Use system Qt installation paths

Otherwise the mkspecs are installed to /usr/mkspecs, not to
/usr/lib/*/qt5/mkspecs.
---
 CMakeLists.txt | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/CMakeLists.txt b/CMakeLists.txt
index cd07623..6a039d2 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -102,7 +102,7 @@ include(CTest)
 include(GammaRayMacros)
 include(GammaRayMacrosInternal)
 include(FeatureSummary)
-set(KDE_INSTALL_USE_QT_SYS_PATHS OFF)
+set(KDE_INSTALL_USE_QT_SYS_PATHS ON)
 include(ECMGeneratePriFile)
 include(ECMEnableSanitizers)
 include(GenerateExportHeader)