diff --git a/dist/build-arch-tag b/dist/build-arch-tag index ff5b02e..9740a7a 100755 --- a/dist/build-arch-tag +++ b/dist/build-arch-tag @@ -106,9 +106,8 @@ then elif [ $ARCH = "mac" ] then - # Make for ppc and intel, and combine into universal binary + # Make for intel BIN="scyther-mac" - cmake $CMFLAGS -D TARGETOS=MacPPC . && make cmake $CMFLAGS -D TARGETOS=MacIntel . && make cmake $CMFLAGS . && make scyther-mac fi diff --git a/src/GetOS.cmake b/src/GetOS.cmake index d1b023f..981ed7a 100644 --- a/src/GetOS.cmake +++ b/src/GetOS.cmake @@ -8,7 +8,6 @@ # # Win32 # Unix -# MacPPC # MacIntel # First we find out the current operating system @@ -20,7 +19,7 @@ else (WIN32) # Not windows, is it a mac? if (APPLE) # TODO: A mac, but what architecture? - # For now we assume intel (Christoph Sprenger's machine) + # For now we assume intel set (Source_OS "MacIntel") else (APPLE) # Not a mac, not windows