diff options
author | Conrad Kostecki <conrad@kostecki.com> | 2018-04-26 22:18:45 +0200 |
---|---|---|
committer | Robin H. Johnson <robbat2@gentoo.org> | 2018-05-12 13:25:45 -0700 |
commit | 9fe32836f19db9b4c614e0e6d563ac267ba21e2f (patch) | |
tree | 3e526d4b5915287cf3f9beee5b71e18607d134cd /dev-libs/openssl | |
parent | net-misc/rsync: remove unused patches (diff) | |
download | gentoo-9fe32836f19db9b4c614e0e6d563ac267ba21e2f.tar.gz gentoo-9fe32836f19db9b4c614e0e6d563ac267ba21e2f.tar.bz2 gentoo-9fe32836f19db9b4c614e0e6d563ac267ba21e2f.zip |
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 <robbat2@gentoo.org>
Closes: https://github.com/gentoo/gentoo/pull/7306
Diffstat (limited to 'dev-libs/openssl')
-rw-r--r-- | dev-libs/openssl/files/gentoo.config-1.0.2 | 6 |
1 files 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 37b83cc2e7b5..d16175e6292e 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};; |