pkgsrc-Changes archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

CVS commit: pkgsrc/bootstrap



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.

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 <agc%NetBSD.org@localhost>
 # 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
 }



Home | Main Index | Thread Index | Old Index