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 C3419138334 for ; Fri, 15 Feb 2019 20:10:20 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 66DC6E0885; Fri, 15 Feb 2019 20:10:19 +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 3F0FAE0885 for ; Fri, 15 Feb 2019 20:10:19 +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 8AD33335CD5 for ; Fri, 15 Feb 2019 20:10:17 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 610C0503 for ; Fri, 15 Feb 2019 20:10:12 +0000 (UTC) From: "Michael Haubenwallner" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Michael Haubenwallner" Message-ID: <1550261363.cc714265770c0f3f29ce18296af82010b3a8a824.haubi@gentoo> Subject: [gentoo-commits] repo/proj/prefix:master commit in: dev-libs/openssl/ X-VCS-Repository: repo/proj/prefix X-VCS-Files: dev-libs/openssl/openssl-1.1.1a-r1.ebuild X-VCS-Directories: dev-libs/openssl/ X-VCS-Committer: haubi X-VCS-Committer-Name: Michael Haubenwallner X-VCS-Revision: cc714265770c0f3f29ce18296af82010b3a8a824 X-VCS-Branch: master Date: Fri, 15 Feb 2019 20:10:12 +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: 43035def-83af-4a1d-a39e-a5ddcffca876 X-Archives-Hash: 5909cff4fe464f2e65c283acc8246709 commit: cc714265770c0f3f29ce18296af82010b3a8a824 Author: Michael Haubenwallner gentoo org> AuthorDate: Fri Feb 15 20:07:46 2019 +0000 Commit: Michael Haubenwallner gentoo org> CommitDate: Fri Feb 15 20:09:23 2019 +0000 URL: https://gitweb.gentoo.org/repo/proj/prefix.git/commit/?id=cc714265 dev-libs/openssl: ignore MS Azure agent env vars The ./config script does listen to MACHINE, RELEASE, SYSTEM and VERSION environment variables for detecting the build system. The MS Azure build agent does set SYSTEM=build, so ./config --test-sanity fails with: Operating system: x86_64-whatever-build This system (build) is not supported. See file INSTALL for details. Package-Manager: Portage-2.3.55.1-prefix, Repoman-2.3.12 Signed-off-by: Michael Haubenwallner gentoo.org> dev-libs/openssl/openssl-1.1.1a-r1.ebuild | 2 ++ 1 file changed, 2 insertions(+) diff --git a/dev-libs/openssl/openssl-1.1.1a-r1.ebuild b/dev-libs/openssl/openssl-1.1.1a-r1.ebuild index a6f6e713e2..408137ed25 100644 --- a/dev-libs/openssl/openssl-1.1.1a-r1.ebuild +++ b/dev-libs/openssl/openssl-1.1.1a-r1.ebuild @@ -139,6 +139,8 @@ src_prepare() { fi # The config script does stupid stuff to prompt the user. Kill it. sed -i '/stty -icanon min 0 time 50; read waste/d' config || die + # The MS Azure build agent does set SYSTEM=build. Ignore such vars. + sed -i '1aunset MACHINE RELEASE SYSTEM VERSION' config || die ./config --test-sanity || die "I AM NOT SANE" multilib_copy_sources