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 809711382C5 for ; Sat, 12 May 2018 20:26:18 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 8985DE0B65; Sat, 12 May 2018 20:26:17 +0000 (UTC) Received: from smtp.gentoo.org (smtp.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 66926E0B65 for ; Sat, 12 May 2018 20:26:17 +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 46371335C86 for ; Sat, 12 May 2018 20:26:16 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 2E94D3B for ; Sat, 12 May 2018 20:26:14 +0000 (UTC) From: "Robin H. Johnson" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Robin H. Johnson" Message-ID: <1526156745.9fe32836f19db9b4c614e0e6d563ac267ba21e2f.robbat2@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-libs/openssl/files/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-libs/openssl/files/gentoo.config-1.0.2 X-VCS-Directories: dev-libs/openssl/files/ X-VCS-Committer: robbat2 X-VCS-Committer-Name: Robin H. Johnson X-VCS-Revision: 9fe32836f19db9b4c614e0e6d563ac267ba21e2f X-VCS-Branch: master Date: Sat, 12 May 2018 20:26:14 +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-Archives-Salt: 44bc161b-5cc0-4386-b0db-d77badbc7e81 X-Archives-Hash: 57aa3392cafd1c647126ca2cd8503425 commit: 9fe32836f19db9b4c614e0e6d563ac267ba21e2f Author: Conrad Kostecki kostecki com> AuthorDate: Thu Apr 26 20:18:45 2018 +0000 Commit: Robin H. Johnson gentoo org> CommitDate: Sat May 12 20:25:45 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9fe32836 dev-libs/openssl: use aarch64 machine for arm64 arch Closes: https://bugs.gentoo.org/638926 Package-Manager: Portage-2.3.24, Repoman-2.3.6 (cherry picked from commit d1a9b4ac497aa915d51b40c56f160619c62b801a) Signed-off-by: Robin H. Johnson gentoo.org> Closes: https://github.com/gentoo/gentoo/pull/7306 dev-libs/openssl/files/gentoo.config-1.0.2 | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/dev-libs/openssl/files/gentoo.config-1.0.2 b/dev-libs/openssl/files/gentoo.config-1.0.2 index 37b83cc2e7b..d16175e6292 100644 --- a/dev-libs/openssl/files/gentoo.config-1.0.2 +++ b/dev-libs/openssl/files/gentoo.config-1.0.2 @@ -1,5 +1,5 @@ #!/usr/bin/env bash -# Copyright 1999-2017 Gentoo Foundation +# Copyright 1999-2018 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # # Openssl doesn't play along nicely with cross-compiling @@ -81,8 +81,8 @@ chost_machine=${CHOST%%-*} case ${system} in linux) case ${chost_machine}:${ABI} in - aarch64*be*) machine="generic64 -DB_ENDIAN";; - aarch64*) machine="generic64 -DL_ENDIAN";; + aarch64*be*) machine="aarch64 -DB_ENDIAN";; + aarch64*) machine="aarch64 -DL_ENDIAN";; alphaev56*|\ alphaev[678]*)machine=alpha+bwx-${compiler};; alpha*) machine=alpha-${compiler};;