diff options
author | grant <grant@pkgsrc.org> | 2004-03-21 01:06:37 +0000 |
---|---|---|
committer | grant <grant@pkgsrc.org> | 2004-03-21 01:06:37 +0000 |
commit | 5a4625cab5a2a5d6fff717e47369850dd15e0b0d (patch) | |
tree | 474cabd3c73bd8b5a4dfc69597dd0b94ddc32d8f /bootstrap | |
parent | 7200f4494e7910a27002ad35efceba669e3ac9fe (diff) | |
download | pkgsrc-5a4625cab5a2a5d6fff717e47369850dd15e0b0d.tar.gz |
MACHINE_ARCH should be derived from `uname -m` on OpenBSD.
from Philip Reynolds on tech-pkg.
Diffstat (limited to 'bootstrap')
-rwxr-xr-x | bootstrap/bootstrap | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/bootstrap/bootstrap b/bootstrap/bootstrap index abcc98ed6b1..420cf97c1e7 100755 --- a/bootstrap/bootstrap +++ b/bootstrap/bootstrap @@ -1,6 +1,6 @@ #! /bin/sh -# $NetBSD: bootstrap,v 1.7 2004/03/11 20:49:09 tv Exp $ +# $NetBSD: bootstrap,v 1.8 2004/03/21 01:06:37 grant Exp $ # # # Copyright (c) 2001-2002 Alistair G. Crooks. All rights reserved. @@ -259,7 +259,7 @@ OpenBSD) need_sed=no set_opsys=no check_prog mtreeprog mtree - machine_arch=`uname -p` + machine_arch=`uname -m` ;; SunOS) if [ -d "/usr/xpg4/bin" ]; then |