diff options
author | Jimi Huotari <chiitoo@gentoo.org> | 2018-12-27 22:26:49 +0200 |
---|---|---|
committer | Andreas Sturmlechner <asturm@gentoo.org> | 2019-02-07 23:08:58 +0100 |
commit | 35ec5628b90bdc7ad6bb8ccc9e603100ad642cd9 (patch) | |
tree | 36c1047761b2b870644f34b9375320fb069b878b /eclass | |
parent | sys-apps/ripgrep: fix installation warnings (diff) | |
download | gentoo-35ec5628b90bdc7ad6bb8ccc9e603100ad642cd9.tar.gz gentoo-35ec5628b90bdc7ad6bb8ccc9e603100ad642cd9.tar.bz2 gentoo-35ec5628b90bdc7ad6bb8ccc9e603100ad642cd9.zip |
qt5-build.eclass: remove obsolete instruction sets workaround
This has seemingly been broken since 2017-08-02, where things
were moved around [1], and now causes build failures as the
directory has been removed completely [2].
1. https://code.qt.io/cgit/qt/qtbase.git/commit/?id=f54f7d84
2. https://code.qt.io/cgit/qt/qtbase.git/commit/?id=73b87697
Bug: https://bugs.gentoo.org/552942
Bug: https://bugs.gentoo.org/672946
Signed-off-by: Jimi Huotari <chiitoo@gentoo.org>
Signed-off-by: Andreas Sturmlechner <asturm@gentoo.org>
Diffstat (limited to 'eclass')
-rw-r--r-- | eclass/qt5-build.eclass | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/eclass/qt5-build.eclass b/eclass/qt5-build.eclass index 83f66220c735..c6c08a6bd03e 100644 --- a/eclass/qt5-build.eclass +++ b/eclass/qt5-build.eclass @@ -178,11 +178,6 @@ qt5-build_src_prepare() { sed -i -e "/^QMAKE_CONF_COMPILER=/ s:=.*:=\"$(tc-getCXX)\":" \ configure || die "sed failed (QMAKE_CONF_COMPILER)" - # Don't inject -msse/-mavx/... into CXXFLAGS when detecting - # compiler support for extended instruction sets (bug 552942) - find config.tests/common -name '*.pro' -type f -execdir \ - sed -i -e '/QMAKE_CXXFLAGS\s*+=/ d' '{}' + || die - # Don't add -O3 to CXXFLAGS (bug 549140) sed -i -e '/CONFIG\s*+=/ s/optimize_full//' \ src/{corelib/corelib,gui/gui}.pro || die "sed failed (optimize_full)" |