PKGBUILDs/qt5-base/mingw-w64-dynamic/0017-Build-dynamic-host-lib...

42 lines
1.4 KiB
Diff
Raw Normal View History

2019-04-21 22:37:50 +02:00
From 9ae3b38009637d7455dc7c30295beb9de8f137fc Mon Sep 17 00:00:00 2001
From: Martchus <martchus@gmx.net>
Date: Sun, 18 Sep 2016 14:27:28 +0200
2019-02-02 18:18:25 +01:00
Subject: [PATCH 17/34] Build dynamic host libraries
2017-06-02 18:20:04 +02:00
This came initially from Fedora, not sure whether
it makes sense to keep it. Regular Arch package
uses static lib as intended by upstream.
Change-Id: I91a3613955c656fb0d262ccb9b2529350bab032b
---
mkspecs/features/qt_module.prf | 2 +-
src/tools/bootstrap-dbus/bootstrap-dbus.pro | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/mkspecs/features/qt_module.prf b/mkspecs/features/qt_module.prf
2018-12-08 22:06:32 +01:00
index 51b5bde67a..70919e98e9 100644
--- a/mkspecs/features/qt_module.prf
+++ b/mkspecs/features/qt_module.prf
2018-09-19 20:39:07 +02:00
@@ -25,7 +25,7 @@ requires(!$$skip)
# Compile as shared/DLL or static according to the option given to configure
# unless overridden. Host builds are always static
-host_build|staticlib: CONFIG += static
+staticlib: CONFIG += static
host_build {
QT -= gui # no host module will ever use gui
diff --git a/src/tools/bootstrap-dbus/bootstrap-dbus.pro b/src/tools/bootstrap-dbus/bootstrap-dbus.pro
2016-12-20 23:05:26 +01:00
index c3ed27d979..30d2114aa1 100644
--- a/src/tools/bootstrap-dbus/bootstrap-dbus.pro
+++ b/src/tools/bootstrap-dbus/bootstrap-dbus.pro
@@ -27,4 +27,4 @@ SOURCES = \
load(qt_module)
lib.CONFIG = dummy_install
-INSTALLS = lib
+INSTALLS += lib
--
2019-03-16 16:58:50 +01:00
2.21.0