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 75A1E138334 for ; Tue, 21 May 2019 14:56:02 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 88C05E08CE; Tue, 21 May 2019 14:56:01 +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 67C1FE08CE for ; Tue, 21 May 2019 14:56:01 +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 4B3CA344470 for ; Tue, 21 May 2019 14:56:00 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 68FB157B for ; Tue, 21 May 2019 14:55:58 +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: <1558450551.53b31a333ad3b9123b4ee5541295e6b5f00080cd.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: 53b31a333ad3b9123b4ee5541295e6b5f00080cd X-VCS-Branch: master Date: Tue, 21 May 2019 14:55:58 +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: a1cc28c6-09b5-49c3-8ff7-d6fca5756237 X-Archives-Hash: 488b89a30d2716618661fdb3edde76ed commit: 53b31a333ad3b9123b4ee5541295e6b5f00080cd Author: Fabian Groffen gentoo org> AuthorDate: Tue May 21 14:55:51 2019 +0000 Commit: Fabian Groffen gentoo org> CommitDate: Tue May 21 14:55:51 2019 +0000 URL: https://gitweb.gentoo.org/proj/portage-utils.git/commit/?id=53b31a33 travis: build blake2 without openmp to avoid trouble Signed-off-by: Fabian Groffen gentoo.org> travis/install-blake2.sh | 2 ++ 1 file changed, 2 insertions(+) diff --git a/travis/install-blake2.sh b/travis/install-blake2.sh index 36989d8..4a2bc20 100755 --- a/travis/install-blake2.sh +++ b/travis/install-blake2.sh @@ -15,12 +15,14 @@ main() { ./configure \ --enable-static \ --disable-shared \ + --disable-openmp \ --prefix=/ \ --libdir=/ \ --includedir=/ m m DESTDIR="${PWD}/../../sysroot" install ) + v rm -f ../sysroot/*.la v rm -rf libb2* travis_fold end dep-blake2 }