commit: eb73089323a44c9fabd715165361bcd39eb8b1bb
Author: Davide Pesavento <pesa <AT> gentoo <DOT> org>
AuthorDate: Thu May 18 00:22:33 2017 +0000
Commit: Michael Palimaka <kensington <AT> gentoo <DOT> org>
CommitDate: Sun Oct 8 01:46:24 2017 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=eb730893
qt5-build.eclass: simplify conditional since 5.8.0 is gone
eclass/qt5-build.eclass | 3 +--
1 file changed, 1 insertion(+), 2 deletions(-)
diff --git a/eclass/qt5-build.eclass b/eclass/qt5-build.eclass
index f905a7ab273..b6c211bcad7 100644
--- a/eclass/qt5-build.eclass
+++ b/eclass/qt5-build.eclass
@@ -641,8 +641,7 @@ qt5_base_configure() {
# disable undocumented X11-related flags, override in qtgui
# (not shown in ./configure -help output)
-no-xkb
- $([[ ${QT5_MINOR_VERSION} -lt 8 || ${QT5_MINOR_VERSION} -eq 8
- && ${QT5_PATCH_VERSION} -lt 1 ]] && echo -no-xrender)
+ $([[ ${QT5_MINOR_VERSION} -lt 8 ]] && echo -no-xrender)
# disable obsolete/unused X11-related flags
$([[ ${QT5_MINOR_VERSION} -lt 8 ]] && echo -no-mitshm
-no-xcursor -no-xfixes -no-xrandr -no-xshape -no-xsync)