From ac360d8e4806ec5997b57b31058f18438f655022 Mon Sep 17 00:00:00 2001 From: Travis Geiselbrecht Date: Wed, 13 Feb 2002 02:30:35 +0000 Subject: [PATCH] Finally just made the system default to building i386 if you dont have a ARCH var set. I was getting tired of having to set it on my sun box when i386 is the only real viable target at this point in time. Also made the sun echo detection use the already detected OSTYPE var. git-svn-id: svn+ssh://newos.org/var/svn/newos/newos@512 c25cc9d1-44fa-0310-b259-ad778cb1d433 --- makefile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/makefile b/makefile index ce07be9..e138083 100644 --- a/makefile +++ b/makefile @@ -20,8 +20,8 @@ ifeq ($(HOSTTYPE),macintosh) endif endif ifeq ($(ARCH),) -ARCH := $(HOSTTYPE) -#ARCH := i386 +#ARCH := $(HOSTTYPE) +ARCH := i386 #ARCH := sparc #ARCH := sh4 #ARCH := alpha @@ -37,7 +37,7 @@ HOST_STRIP := strip # setup echo ECHO := echo -ifeq ($(shell uname),SunOS) +ifeq ($(OSTYPE),SunOS) ECHO := /usr/ucb/echo endif -- 2.11.4.GIT