diff options
author | Andreas Sturmlechner <asturm@gentoo.org> | 2019-12-16 07:27:46 +0100 |
---|---|---|
committer | Andreas Sturmlechner <asturm@gentoo.org> | 2019-12-16 16:40:02 +0100 |
commit | b0c83cbc03de177128888867bc4969e7a0ecf2d6 (patch) | |
tree | 6bd2c0081fd6fa70ddd90bc934439659e27c8d17 /eclass | |
parent | ros-meta/rosbridge_suite: Bump to 0.11.3. (diff) | |
download | gentoo-b0c83cbc03de177128888867bc4969e7a0ecf2d6.tar.gz gentoo-b0c83cbc03de177128888867bc4969e7a0ecf2d6.tar.bz2 gentoo-b0c83cbc03de177128888867bc4969e7a0ecf2d6.zip |
qt5-build.eclass: Disable zstd for Qt5 >=5.13.2 RCC compression
Closes: https://bugs.gentoo.org/699248
Signed-off-by: Andreas Sturmlechner <asturm@gentoo.org>
Diffstat (limited to 'eclass')
-rw-r--r-- | eclass/qt5-build.eclass | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/eclass/qt5-build.eclass b/eclass/qt5-build.eclass index 2bee3a3fae47..e1b32e71ab4f 100644 --- a/eclass/qt5-build.eclass +++ b/eclass/qt5-build.eclass @@ -643,6 +643,9 @@ qt5_base_configure() { # enable in respective modules to avoid poisoning QT.global_private.enabled_features -no-gui -no-widgets + # QTBUG-76521, default will change to zstd in Qt6 + $([[ ${QT5_MINOR_VERSION} -ge 13 ]] && echo -no-zstd) + # module-specific options "${myconf[@]}" ) |