Add additional PPC rules

This commit is contained in:
twinaphex 2016-01-14 21:03:04 +01:00
parent 424fb77fe0
commit c167520073

View file

@ -421,7 +421,7 @@ case "$platform" in
BINARY_EXT=""
FORMAT_COMPILER_TARGET="osx"
case "$ARCH" in
x86_64|i386|ppc*)
x86_64|i386|Power*|ppc*)
DIST_DIR="osx-$ARCH"
;;
*)
@ -650,7 +650,7 @@ if [[ "$FORMAT_COMPILER_TARGET" = "osx" && -z "$NOUNIVERSAL" ]]; then
i386|x86_64)
export ARCHFLAGS="-arch i386 -arch x86_64"
;;
ppc|ppc64)
Power*|ppc|ppc64)
export ARCHFLAGS="-arch ppc -arch ppc64"
;;
*)