From e09e027914e1d22485432c3e2b617ea90c8059ed Mon Sep 17 00:00:00 2001 From: Zachary Slater Date: Fri, 2 Sep 2005 21:11:46 +0000 Subject: [PATCH] Another patch from gladiac, cleans up the makefile a little. --- code/unix/Makefile | 11 +---------- 1 file changed, 1 insertion(+), 10 deletions(-) diff --git a/code/unix/Makefile b/code/unix/Makefile index 6e428b1f..a242852e 100644 --- a/code/unix/Makefile +++ b/code/unix/Makefile @@ -19,16 +19,7 @@ PLATFORM=$(shell uname|tr A-Z a-z) PLATFORM_RELEASE=$(shell uname -r) -ARCH=$(shell uname -m) -ifeq ($(ARCH),i486) -ARCH=i386 -endif -ifeq ($(ARCH),i586) -ARCH=i386 -endif -ifeq ($(ARCH),i686) -ARCH=i386 -endif +ARCH:=$(shell uname -m | sed -e s/i.86/i386/) ### ### These paths are where you probably want to change things