Received: by mail.netbsd.org (Postfix, from userid 605) id A225884D7B; Thu, 5 Dec 2019 22:19:57 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 2CDE584D72 for ; Thu, 5 Dec 2019 22:19:57 +0000 (UTC) X-Virus-Scanned: amavisd-new at netbsd.org Received: from mail.netbsd.org ([IPv6:::1]) by localhost (mail.netbsd.org [IPv6:::1]) (amavisd-new, port 10025) with ESMTP id A1ujM5u8UICf for ; Thu, 5 Dec 2019 22:19:56 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id 7658484C81 for ; Thu, 5 Dec 2019 22:19:56 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 6DD7EFA97; Thu, 5 Dec 2019 22:19:56 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1575584396238510" MIME-Version: 1.0 Date: Thu, 5 Dec 2019 22:19:56 +0000 From: "Sevan Janiyan" Subject: CVS commit: pkgsrc/bootstrap To: pkgsrc-changes@NetBSD.org Reply-To: sevan@netbsd.org X-Mailer: log_accum Message-Id: <20191205221956.6DD7EFA97@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: pkgsrc-changes.NetBSD.org Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_1575584396238510 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: sevan Date: Thu Dec 5 22:19:56 UTC 2019 Modified Files: pkgsrc/bootstrap: bootstrap Log Message: Skip trying to make use of a 64bit ABI on Darwin as the system libraries on Tiger lack support and it doesn't work out too great on Leopard either, though it's much better than the former release. To generate a diff of this commit: cvs rdiff -u -r1.272 -r1.273 pkgsrc/bootstrap/bootstrap Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1575584396238510 Content-Disposition: inline Content-Length: 765 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/bootstrap/bootstrap diff -u pkgsrc/bootstrap/bootstrap:1.272 pkgsrc/bootstrap/bootstrap:1.273 --- pkgsrc/bootstrap/bootstrap:1.272 Tue Nov 5 13:58:06 2019 +++ pkgsrc/bootstrap/bootstrap Thu Dec 5 22:19:56 2019 @@ -1,6 +1,6 @@ #! /bin/sh -# $NetBSD: bootstrap,v 1.272 2019/11/05 13:58:06 triaxx Exp $ +# $NetBSD: bootstrap,v 1.273 2019/12/05 22:19:56 sevan Exp $ # # Copyright (c) 2001-2011 Alistair Crooks # All rights reserved. @@ -226,12 +226,7 @@ get_machine_arch_darwin() echo `uname -m` ;; powerpc) - # sysctl mib exists on 64-bit hardware - if [ -n "`sysctl -n hw.optional.64bitops 2>/dev/null`" ]; then - echo "powerpc64" - else - echo "powerpc" - fi + echo "powerpc" ;; esac } --_----------=_1575584396238510--