From 31558c55c97a5ae21db0397a002d41bc77ef9abb Mon Sep 17 00:00:00 2001 From: Steven Noonan Date: Fri, 6 Nov 2009 20:53:33 -0800 Subject: makefile: build native arch on Mac OS X The previous default was 'i386', but that obviously wouldn't go well on a PowerPC machine. Signed-off-by: Steven Noonan --- crawl-ref/source/makefile | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/crawl-ref/source/makefile b/crawl-ref/source/makefile index 035265a5de..72922be698 100644 --- a/crawl-ref/source/makefile +++ b/crawl-ref/source/makefile @@ -206,10 +206,7 @@ ifdef APPLE_GCC SDK_VER := 10.4 GCC_VER := 4.0 -# FIXME: The '-arch i386' is only here until -# SDL 1.2.14 is available -# -ARCHS := i386 +ARCHS := $(shell arch) export ARCHS CF_ARCHS := $(patsubst %,-arch %,$(ARCHS)) -- cgit v1.2.3-54-g00ecf