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 F27F41382E6 for ; Mon, 4 Jul 2016 19:05:46 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 00719E0B26; Mon, 4 Jul 2016 19:05:45 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 969D7E0B26 for ; Mon, 4 Jul 2016 19:05:44 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 48B4B340DFE for ; Mon, 4 Jul 2016 19:05:43 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 88463241B for ; Mon, 4 Jul 2016 19:05:39 +0000 (UTC) From: "Stephen Klimaszewski" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Stephen Klimaszewski" Message-ID: <1467659089.3129d67a8391aa393e56622410f0d94d61259bde.steev@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sys-process/criu/ X-VCS-Repository: repo/gentoo X-VCS-Files: sys-process/criu/criu-2.3.ebuild X-VCS-Directories: sys-process/criu/ X-VCS-Committer: steev X-VCS-Committer-Name: Stephen Klimaszewski X-VCS-Revision: 3129d67a8391aa393e56622410f0d94d61259bde X-VCS-Branch: master Date: Mon, 4 Jul 2016 19:05:39 +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: df7f218a-946b-45af-b9c5-77e34a8daf87 X-Archives-Hash: 1ba274b26db481ba3d39cee86e0d51cc commit: 3129d67a8391aa393e56622410f0d94d61259bde Author: Steev Klimaszewski gentoo org> AuthorDate: Mon Jul 4 19:04:49 2016 +0000 Commit: Stephen Klimaszewski gentoo org> CommitDate: Mon Jul 4 19:04:49 2016 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3129d67a sys-process/criu: Fix passing arch to fix build on arm64 Upstream wants to do the aarch64 replacement themselves, so don't pass aarch64 in the ebuild, otherwise we end up with the following type error: make -j8 -l10 CC=aarch64-unknown-linux-gnu-gcc LD=aarch64-unknown-linux-gnu-ld OBJCOPY=aarch64-unknown-linux-gnu-objcopy LIBDIR=/usr/lib64 ARCH=aarch64 V=1 WERROR=0 DEBUG=0 SETPROCTITLE=no PYCRIU=no all docs Makefile:29: *** "The architecture aarch64 isn't supported". Stop. Package-Manager: portage-2.3.0 sys-process/criu/criu-2.3.ebuild | 1 - 1 file changed, 1 deletion(-) diff --git a/sys-process/criu/criu-2.3.ebuild b/sys-process/criu/criu-2.3.ebuild index 971a670..d67ab07 100644 --- a/sys-process/criu/criu-2.3.ebuild +++ b/sys-process/criu/criu-2.3.ebuild @@ -47,7 +47,6 @@ criu_arch() { # criu infers the arch from $(uname -m). We never want this to happen. case ${ARCH} in amd64) echo "x86";; - arm64) echo "aarch64";; *) echo "${ARCH}";; esac }