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 840E813835A for ; Sun, 25 Apr 2021 22:01:07 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id CA287E087C; Sun, 25 Apr 2021 22:01:06 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (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 B2D41E087C for ; Sun, 25 Apr 2021 22:01:06 +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 0B0943416F0 for ; Sun, 25 Apr 2021 22:01:05 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 59ACB702 for ; Sun, 25 Apr 2021 22:01:03 +0000 (UTC) From: "Sam James" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sam James" Message-ID: <1619388048.044e2eaed9c9613eafad2bb51de3acbf58e8d003.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-forensics/aflplusplus/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-forensics/aflplusplus/aflplusplus-3.12c-r1.ebuild X-VCS-Directories: app-forensics/aflplusplus/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 044e2eaed9c9613eafad2bb51de3acbf58e8d003 X-VCS-Branch: master Date: Sun, 25 Apr 2021 22:01:03 +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: 87d6c585-2991-4ebc-9c4e-43e068c285e8 X-Archives-Hash: 551a29e62d88117f215d9a91a1f7e2b0 commit: 044e2eaed9c9613eafad2bb51de3acbf58e8d003 Author: Sam James gentoo org> AuthorDate: Sun Apr 25 21:23:35 2021 +0000 Commit: Sam James gentoo org> CommitDate: Sun Apr 25 22:00:48 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=044e2eae app-forensics/aflplusplus: respect CXX Closes: https://bugs.gentoo.org/779655 Signed-off-by: Sam James gentoo.org> app-forensics/aflplusplus/aflplusplus-3.12c-r1.ebuild | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/app-forensics/aflplusplus/aflplusplus-3.12c-r1.ebuild b/app-forensics/aflplusplus/aflplusplus-3.12c-r1.ebuild index bd5b17d198b..d6d3ef5f510 100644 --- a/app-forensics/aflplusplus/aflplusplus-3.12c-r1.ebuild +++ b/app-forensics/aflplusplus/aflplusplus-3.12c-r1.ebuild @@ -65,8 +65,16 @@ src_compile() { MAN_PATH="${EPREFIX}/usr/share/man/man8" } +src_test() { + emake \ + CC="$(tc-getCC)" \ + CXX="$(tc-getCXX)" +} + src_install() { emake \ + CC="$(tc-getCC)" \ + CXX="$(tc-getCXX)" \ DESTDIR="${D}" \ PREFIX="${EPREFIX}/usr" \ HELPER_PATH="${EPREFIX}/usr/$(get_libdir)/afl" \