Skip to content

Commit 7859be1

Browse files
committed
ui-macos/bits/runpython.do: skip ppc64 architecture.
I don't have a Mac that can build it. Hopefully ppc will run fine on ppc64.
1 parent f313d50 commit 7859be1

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

ui-macos/bits/runpython.do

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ ARCHES=""
44
printf "Platforms: "
55
for d in /usr/libexec/gcc/darwin/*; do
66
PLAT=$(basename "$d")
7+
[ "$PLAT" != "ppc64" ] || continue # fails for some reason on my Mac
78
ARCHES="$ARCHES -arch $PLAT"
89
printf "$PLAT "
910
done

0 commit comments

Comments
 (0)