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 00D44138334 for ; Fri, 3 Jan 2020 14:55:51 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 92DA6E0A4F; Fri, 3 Jan 2020 14:55:45 +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 7AA2EE0A4F for ; Fri, 3 Jan 2020 14:55:45 +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 7668B34DEF4 for ; Fri, 3 Jan 2020 14:55:44 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 0DF933E for ; Fri, 3 Jan 2020 14:55:42 +0000 (UTC) From: "Fabian Groffen" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Fabian Groffen" Message-ID: <1578063323.199e9db25a2aa7bed23d26cb7f835cf0569bd66d.grobian@gentoo> Subject: [gentoo-commits] proj/portage-utils:master commit in: travis/ X-VCS-Repository: proj/portage-utils X-VCS-Files: travis/install-blake2.sh X-VCS-Directories: travis/ X-VCS-Committer: grobian X-VCS-Committer-Name: Fabian Groffen X-VCS-Revision: 199e9db25a2aa7bed23d26cb7f835cf0569bd66d X-VCS-Branch: master Date: Fri, 3 Jan 2020 14:55:42 +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: 64eb0c68-12e9-48ed-93d0-408742243dd5 X-Archives-Hash: 8efeca332cb3e6eb46ee40485678e4e1 commit: 199e9db25a2aa7bed23d26cb7f835cf0569bd66d Author: Fabian Groffen gentoo org> AuthorDate: Fri Jan 3 14:55:23 2020 +0000 Commit: Fabian Groffen gentoo org> CommitDate: Fri Jan 3 14:55:23 2020 +0000 URL: https://gitweb.gentoo.org/proj/portage-utils.git/commit/?id=199e9db2 travis: fix blake2b installation for coverity or valgrind Signed-off-by: Fabian Groffen gentoo.org> travis/install-blake2.sh | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/travis/install-blake2.sh b/travis/install-blake2.sh index 4a2bc20..92e58ff 100755 --- a/travis/install-blake2.sh +++ b/travis/install-blake2.sh @@ -26,4 +26,8 @@ main() { v rm -rf libb2* travis_fold end dep-blake2 } + +if [[ ${CC} == valgrind || ${CC} == coverity ]] ; then + export CC=gcc +fi main "$@"