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 1A79F1382C5 for ; Sat, 5 Dec 2020 14:58:32 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 30724E086D; Sat, 5 Dec 2020 14:58:31 +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 15CD5E0866 for ; Sat, 5 Dec 2020 14:58:30 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (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 955783410AE for ; Sat, 5 Dec 2020 14:58:29 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 0DAE6474 for ; Sat, 5 Dec 2020 14:58:28 +0000 (UTC) From: "Guilherme Amadio" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Guilherme Amadio" Message-ID: <1607180050.604edcde867f02343888b64b2e08e8bea1cf23d0.amadio@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-util/cppcheck/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-util/cppcheck/cppcheck-2.2.ebuild X-VCS-Directories: dev-util/cppcheck/ X-VCS-Committer: amadio X-VCS-Committer-Name: Guilherme Amadio X-VCS-Revision: 604edcde867f02343888b64b2e08e8bea1cf23d0 X-VCS-Branch: master Date: Sat, 5 Dec 2020 14:58:28 +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-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 982cc5cb-8022-4cce-a8cb-501effe28000 X-Archives-Hash: 4d41c39b90c6033999b8beda5b76d0ac commit: 604edcde867f02343888b64b2e08e8bea1cf23d0 Author: Guilherme Amadio gentoo org> AuthorDate: Fri Dec 4 14:11:24 2020 +0000 Commit: Guilherme Amadio gentoo org> CommitDate: Sat Dec 5 14:54:10 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=604edcde dev-util/cppcheck: fix double prefix in installed files Package-Manager: Portage-3.0.11, Repoman-3.0.2 Signed-off-by: Guilherme Amadio gentoo.org> dev-util/cppcheck/cppcheck-2.2.ebuild | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dev-util/cppcheck/cppcheck-2.2.ebuild b/dev-util/cppcheck/cppcheck-2.2.ebuild index 4589cb21f5d..b25286926e7 100644 --- a/dev-util/cppcheck/cppcheck-2.2.ebuild +++ b/dev-util/cppcheck/cppcheck-2.2.ebuild @@ -40,7 +40,7 @@ src_configure() { -DHAVE_RULES="$(usex pcre)" -DBUILD_GUI="$(usex qt5)" -DUSE_Z3="$(usex z3)" - -DFILESDIR="${EROOT}/usr/share/${PN}/" + -DFILESDIR="usr/share/${PN}/" -ENABLE_OSS_FUZZ=OFF ) cmake-utils_src_configure @@ -59,7 +59,7 @@ src_compile() { src_install() { # it's not autotools-based, so "${ED}" here, not "${D}", bug 531760 emake install DESTDIR="${ED}" \ - FILESDIR="${EROOT}/usr/share/${PN}/" + FILESDIR="usr/share/${PN}/" insinto "/usr/share/${PN}/cfg" doins cfg/*.cfg