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)
issue20
Tibs 2012-07-09 19:36:09 +01:00
rodzic 52e9e332bd
commit 631d9646bf
1 zmienionych plików z 5 dodań i 1 usunięć

Wyświetl plik

@ -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 =