From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 0E1B9138334 for ; Thu, 5 Jul 2018 17:06:27 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id E2CE3E09BD; Thu, 5 Jul 2018 17:06:25 +0000 (UTC) Received: from smtp.gentoo.org (dev.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id B83E4E09BD for ; Thu, 5 Jul 2018 17:06:25 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 0794B335CAB for ; Thu, 5 Jul 2018 17:06:24 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id B1058358 for ; Thu, 5 Jul 2018 17:06:21 +0000 (UTC) From: "Davide Pesavento" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Davide Pesavento" Message-ID: <1530810371.86b411ceb1cc8df7b359c05b8d3dd807a42051b6.pesa@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-qt/qtwebkit/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-qt/qtwebkit/qtwebkit-5.212.0_pre20180120.ebuild X-VCS-Directories: dev-qt/qtwebkit/ X-VCS-Committer: pesa X-VCS-Committer-Name: Davide Pesavento X-VCS-Revision: 86b411ceb1cc8df7b359c05b8d3dd807a42051b6 X-VCS-Branch: master Date: Thu, 5 Jul 2018 17:06:21 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: 412cebb8-24ea-4719-a908-0e658fa8fc97 X-Archives-Hash: 473e75b825c1df903b2c52c0d05bff8c commit: 86b411ceb1cc8df7b359c05b8d3dd807a42051b6 Author: Davide Pesavento gentoo org> AuthorDate: Thu Jul 5 16:46:37 2018 +0000 Commit: Davide Pesavento gentoo 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