diff options
author | Hennadii Stepanov <32963518+hebasto@users.noreply.github.com> | 2021-06-16 02:10:00 +0300 |
---|---|---|
committer | Hennadii Stepanov <32963518+hebasto@users.noreply.github.com> | 2021-06-16 02:23:29 +0300 |
commit | 1155978d8f3fcc1cebf357302b933b834f9c9465 (patch) | |
tree | 9ec8132a70e63b8949b68b27fc61d6fe54256544 /depends | |
parent | 763793b60e4ec0d1df129279ca3f08fc97d6d90e (diff) |
build, qt: Do not install *.prl files
Diffstat (limited to 'depends')
-rw-r--r-- | depends/packages/qt.mk | 2 | ||||
-rw-r--r-- | depends/patches/qt/qt.pro | 4 |
2 files changed, 5 insertions, 1 deletions
diff --git a/depends/packages/qt.mk b/depends/packages/qt.mk index 32979244e4..0c3ef8c82f 100644 --- a/depends/packages/qt.mk +++ b/depends/packages/qt.mk @@ -265,5 +265,5 @@ endef define $(package)_postprocess_cmds rm -rf native/mkspecs/ native/lib/ lib/cmake/ && \ - rm -f lib/lib*.la lib/*.prl plugins/*/*.prl + rm -f lib/lib*.la endef diff --git a/depends/patches/qt/qt.pro b/depends/patches/qt/qt.pro index 6d8b7fdb6a..8f2e900a84 100644 --- a/depends/patches/qt/qt.pro +++ b/depends/patches/qt/qt.pro @@ -3,6 +3,10 @@ cache(, super) !QTDIR_build: cache(CONFIG, add, $$list(QTDIR_build)) +prl = no_install_prl +CONFIG += $$prl +cache(CONFIG, add stash, prl) + TEMPLATE = subdirs SUBDIRS = qtbase qttools qttranslations |