summaryrefslogtreecommitdiffstats
path: root/mkspecs
diff options
context:
space:
mode:
authorOswald Buddenhagen <oswald.buddenhagen@qt.io>2017-01-31 11:19:16 +0100
committerOswald Buddenhagen <oswald.buddenhagen@qt.io>2017-02-02 16:09:35 +0000
commit8286399b9e1988b18810d762c4665658bb7428f9 (patch)
tree04952d235d39cd77fab4ea89a156bf92e363c0d7 /mkspecs
parenta2b4705ac66564397f78b416b8c98fe075a3bbd9 (diff)
fix installation of header-only frameworks
in a framework build, the headers are inside the "library", so it's obviously not very wise to suppress its installation on the basis of it not being there. Task-number: QTBUG-57656 Change-Id: I026a3e486a2aad6ee0b8e0d264af4385af945e42 Reviewed-by: Jake Petroules <jake.petroules@qt.io> Reviewed-by: Harald Fernengel <harryf@gmx.com>
Diffstat (limited to 'mkspecs')
-rw-r--r--mkspecs/features/qt_module.prf6
1 files changed, 3 insertions, 3 deletions
diff --git a/mkspecs/features/qt_module.prf b/mkspecs/features/qt_module.prf
index f6cbf99c05..ec31e457db 100644
--- a/mkspecs/features/qt_module.prf
+++ b/mkspecs/features/qt_module.prf
@@ -68,9 +68,9 @@ load(qt_build_paths)
header_module {
TEMPLATE = aux
- CONFIG += \
- force_qt \ # Needed for the headers_clean tests.
- qt_no_install_library
+ CONFIG += force_qt # Needed for the headers_clean tests.
+ !lib_bundle: \
+ CONFIG += qt_no_install_library
} else {
TEMPLATE = lib
}