commit: 86b411ceb1cc8df7b359c05b8d3dd807a42051b6 Author: Davide Pesavento <pesa <AT> gentoo <DOT> org> AuthorDate: Thu Jul 5 16:46:37 2018 +0000 Commit: Davide Pesavento <pesa <AT> gentoo <DOT> org> CommitDate: Thu Jul 5 17:06:11 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=86b411ce
dev-qt/qtwebkit: fix src_install sanity check on prefix Bug: https://bugs.gentoo.org/572056 Package-Manager: Portage-2.3.41, Repoman-2.3.9 dev-qt/qtwebkit/qtwebkit-5.212.0_pre20180120.ebuild | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dev-qt/qtwebkit/qtwebkit-5.212.0_pre20180120.ebuild b/dev-qt/qtwebkit/qtwebkit-5.212.0_pre20180120.ebuild index 506e3879d34..731937dcc71 100644 --- a/dev-qt/qtwebkit/qtwebkit-5.212.0_pre20180120.ebuild +++ b/dev-qt/qtwebkit/qtwebkit-5.212.0_pre20180120.ebuild @@ -98,7 +98,7 @@ pkg_setup() { } src_configure() { - # Respect CC, otherwise fails on prefix #395875 + # Respect CC, otherwise fails on prefix, bug #395875 tc-export CC # Multiple rendering bugs on youtube, github, etc without this, bug #547224 @@ -134,7 +134,7 @@ src_install() { cmake-utils_src_install # bug 572056 - if [[ ! -f ${D%/}$(qt5_get_libdir)/libQt5WebKit.so ]]; then + if [[ ! -f ${ED%/}$(qt5_get_libdir)/libQt5WebKit.so ]]; then eerror "${CATEGORY}/${PF} could not build due to a broken ruby environment." die 'Check "eselect ruby" and ensure you have a working ruby in your $PATH' fi
