From 631d9646bff156c1cb84b3b1f724142c3e2513e8 Mon Sep 17 00:00:00 2001 From: Tibs Date: Mon, 9 Jul 2012 19:36:09 +0100 Subject: [PATCH] Make the Makefile work on Mac OS X Lion again (or, at least, on my Mac - still investigating whether this is all that needs to be done for issue 19 or not, but it's definitely a necessary first step) --- Makefile | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index b4a1d8a..65e34ba 100755 --- a/Makefile +++ b/Makefile @@ -73,7 +73,11 @@ LFS_FLAGS = -D_FILE_OFFSET_BITS=64 # sort of thing (presumably Linux or BSD) ifeq ($(shell uname -s), Darwin) SYSTEM = "macosx" - ARCH_FLAGS = -arch ppc -arch i386 + ARCH_FLAGS = + # If you're still building on a version of Mac OS X that supports powerpc, + # then you may want to uncomment the next line. Obviously, this no longer + # works in Lion, which doesn't support powerpc machines any more. + #ARCH_FLAGS = -arch ppc -arch i386 else SYSTEM = "other" ARCH_FLAGS =