Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. =================================================================== RCS file: /ftp/cvs/cvsroot/src/build.sh,v rcsdiff: /ftp/cvs/cvsroot/src/build.sh,v: warning: Unknown phrases like `commitid ...;' are present. retrieving revision 1.200.2.1 retrieving revision 1.201 diff -u -p -r1.200.2.1 -r1.201 --- src/build.sh 2009/05/13 19:15:48 1.200.2.1 +++ src/build.sh 2009/02/21 22:04:35 1.201 @@ -1,7 +1,7 @@ #! /usr/bin/env sh -# $NetBSD: build.sh,v 1.200.2.1 2009/05/13 19:15:48 jym Exp $ +# $NetBSD: build.sh,v 1.201 2009/02/21 22:04:35 plunky Exp $ # -# Copyright (c) 2001-2009 The NetBSD Foundation, Inc. +# Copyright (c) 2001-2008 The NetBSD Foundation, Inc. # All rights reserved. # # This code is derived from software contributed to The NetBSD Foundation @@ -163,25 +163,14 @@ initdefaults() [ -f share/mk/bsd.own.mk ] || bomb "src/share/mk is missing; please re-fetch the source tree" - # Find information about the build platform. This should be - # kept in sync with _HOST_OSNAME, _HOST_OSREL, and _HOST_ARCH - # variables in share/mk/bsd.sys.mk. - # - # Note that "uname -p" is not part of POSIX, but we want uname_p - # to be set to the host MACHINE_ARCH, if possible. On systems - # where "uname -p" fails, prints "unknown", or prints a string - # that does not look like an identifier, fall back to using the - # output from "uname -m" instead. + # Find information about the build platform. Note that "uname -p" + # is not part of POSIX, but NetBSD's uname -p prints MACHINE_ARCH, + # while uname -m prints MACHINE. # uname_s=$(uname -s 2>/dev/null) uname_r=$(uname -r 2>/dev/null) uname_m=$(uname -m 2>/dev/null) - uname_p=$(uname -p 2>/dev/null || echo "unknown") - case "${uname_p}" in - ''|unknown|*[^-_A-Za-z0-9]*) uname_p="${uname_m}" ;; - esac - - id_u=$(id -u 2>/dev/null || /usr/xpg4/bin/id -u 2>/dev/null) + uname_p=$(uname -p 2>/dev/null || uname -m 2>/dev/null) # If $PWD is a valid name of the current directory, POSIX mandates # that pwd return it by default which causes problems in the @@ -271,10 +260,6 @@ initdefaults() # setmakeenv BUILDSEED "NetBSD-$(${HOST_SH} ${TOP}/sys/conf/osrelease.sh -m)" - # Set MKARZERO to "yes" - # - setmakeenv MKARZERO "yes" - # Set various environment variables to known defaults, # to minimize (cross-)build problems observed "in the field". # @@ -1122,7 +1107,7 @@ validatemakeparams() fi if ${do_build} || ${do_distribution} || ${do_release}; then if ! ${do_expertmode} && \ - [ "$id_u" -ne 0 ] && \ + [ "$(id -u 2>/dev/null)" -ne 0 ] && \ [ "${MKUNPRIVED}" = "no" ] ; then bomb "-U or -E must be set for build as an unprivileged user." fi @@ -1133,7 +1118,7 @@ validatemakeparams() # Install as non-root is a bad idea. # - if ${do_install} && [ "$id_u" -ne 0 ] ; then + if ${do_install} && [ "$(id -u 2>/dev/null)" -ne 0 ] ; then if ${do_expertmode}; then warning "Will install as an unprivileged user." else @@ -1217,7 +1202,7 @@ createmakewrapper() eval cat <