# HG changeset patch # User Karl Berry # Date 1424528372 28800 # Node ID 7f19e7f2afa2b1476983003f9cd6df2f5b2a4b08 # Parent dd6f9e7b674a10806f20a68e9749c05ce6021c59 autoupdate diff --git a/build-aux/config.guess b/build-aux/config.guess --- a/build-aux/config.guess +++ b/build-aux/config.guess @@ -2,7 +2,7 @@ # Attempt to guess a canonical system name. # Copyright 1992-2015 Free Software Foundation, Inc. -timestamp='2015-01-01' +timestamp='2015-02-21' # This file is free software; you can redistribute it and/or modify it # under the terms of the GNU General Public License as published by @@ -168,8 +168,10 @@ # Note: NetBSD doesn't particularly care about the vendor # portion of the name. We always set it to "unknown". sysctl="sysctl -n hw.machine_arch" - UNAME_MACHINE_ARCH=`(/sbin/$sysctl 2>/dev/null || \ - /usr/sbin/$sysctl 2>/dev/null || echo unknown)` + UNAME_MACHINE_ARCH=`(uname -p 2>/dev/null || \ + /sbin/$sysctl 2>/dev/null || \ + /usr/sbin/$sysctl 2>/dev/null || \ + echo unknown)` case "${UNAME_MACHINE_ARCH}" in armeb) machine=armeb-unknown ;; arm*) machine=arm-unknown ;;