24 lines
988 B
Diff
24 lines
988 B
Diff
|
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
|
||
|
From: Nick Cao <nickcao@nichi.co>
|
||
|
Date: Fri, 14 Apr 2023 09:34:46 +0800
|
||
|
Subject: [PATCH] qtbase: qmake: fix includedir in generated pkg-config
|
||
|
|
||
|
---
|
||
|
qmake/generators/makefile.cpp | 3 +--
|
||
|
1 file changed, 1 insertion(+), 2 deletions(-)
|
||
|
|
||
|
diff --git a/qmake/generators/makefile.cpp b/qmake/generators/makefile.cpp
|
||
|
index 482ef2e2697..49217e62cda 100644
|
||
|
--- a/qmake/generators/makefile.cpp
|
||
|
+++ b/qmake/generators/makefile.cpp
|
||
|
@@ -3412,8 +3412,7 @@ MakefileGenerator::writePkgConfigFile()
|
||
|
<< varGlue("QMAKE_PKGCONFIG_CFLAGS", "", " ", " ")
|
||
|
// << varGlue("DEFINES","-D"," -D"," ")
|
||
|
;
|
||
|
- if (!project->values("QMAKE_DEFAULT_INCDIRS").contains(includeDir))
|
||
|
- t << "-I${includedir}";
|
||
|
+ t << "-I${includedir}";
|
||
|
if (target_mode == TARG_MAC_MODE && project->isActiveConfig("lib_bundle")
|
||
|
&& libDir != QLatin1String("/Library/Frameworks")) {
|
||
|
t << " -F${libdir}";
|