diff options
author | Davide Pesavento <pesa@gentoo.org> | 2016-06-13 00:50:57 +0200 |
---|---|---|
committer | Davide Pesavento <pesa@gentoo.org> | 2016-06-13 00:50:57 +0200 |
commit | cafc42c9bb93c9ffd6de7e2a557bd7306f017fea (patch) | |
tree | 5b4e416ae12906f5d353894d58ccf1003f06caa4 /eclass/qt5-build.eclass | |
parent | app-crypt/envchain: Add new ebuild to the tree. (diff) | |
download | gentoo-cafc42c9bb93c9ffd6de7e2a557bd7306f017fea.tar.gz gentoo-cafc42c9bb93c9ffd6de7e2a557bd7306f017fea.tar.bz2 gentoo-cafc42c9bb93c9ffd6de7e2a557bd7306f017fea.zip |
qt5-build.eclass: tweak sed expression to also apply to 5.6.1 and later
Diffstat (limited to 'eclass/qt5-build.eclass')
-rw-r--r-- | eclass/qt5-build.eclass | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/eclass/qt5-build.eclass b/eclass/qt5-build.eclass index 9b1a4ab23bf6..5c3acd8e9e8f 100644 --- a/eclass/qt5-build.eclass +++ b/eclass/qt5-build.eclass @@ -199,7 +199,7 @@ qt5-build_src_prepare() { # Respect toolchain and flags in config.tests find config.tests/unix -name '*.test' -type f -execdir \ - sed -i -re '/(bin\/qmake|QMAKE")/ s/-nocache //' '{}' + || die + sed -i -e 's/-nocache //' '{}' + || die # Don't inject -msse/-mavx/... into CXXFLAGS when detecting # compiler support for extended instruction sets (bug 552942) |