From: Davide Pesavento Date: Thu, 5 Jul 2018 16:46:37 +0000 (+0200) Subject: dev-qt/qtwebkit: fix src_install sanity check on prefix X-Git-Url: http://git.tremily.us/gitweb.cgi?a=commitdiff_plain;h=86b411ceb1cc8df7b359c05b8d3dd807a42051b6;p=gentoo.git 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 --- diff --git a/dev-qt/qtwebkit/qtwebkit-5.212.0_pre20180120.ebuild b/dev-qt/qtwebkit/qtwebkit-5.212.0_pre20180120.ebuild index 506e3879d340..731937dcc710 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