Set UNIVERSAL_ARCHS to only x86_64 on macOS 10.14 Mojave

Signed-off-by: Jeremy Huddleston Sequoia <jeremyhu@macports.org>
This commit is contained in:
Jeremy Huddleston Sequoia
2018-06-05 00:27:41 -07:00
parent 4dbe5137d1
commit 87faa2b7c0
2 changed files with 8 additions and 2 deletions
Vendored
+4 -1
View File
@@ -752,9 +752,12 @@ AC_DEFUN([MP_UNIVERSAL_OPTIONS],[
if test "x$UNIVERSAL_ARCHS" = "x"; then
case "$MACOSX_VERSION" in
10.1[[0-9]]*)
10.1[[0-3]]*)
UNIVERSAL_ARCHS="x86_64 i386"
;;
10.1[[4-9]]*)
UNIVERSAL_ARCHS="x86_64"
;;
10.[[0-5]]*)
UNIVERSAL_ARCHS="i386 ppc"
;;
Vendored
+4 -1
View File
@@ -6393,9 +6393,12 @@ fi
if test "x$UNIVERSAL_ARCHS" = "x"; then
case "$MACOSX_VERSION" in
10.1[0-9]*)
10.1[0-3]*)
UNIVERSAL_ARCHS="x86_64 i386"
;;
10.1[4-9]*)
UNIVERSAL_ARCHS="x86_64"
;;
10.[0-5]*)
UNIVERSAL_ARCHS="i386 ppc"
;;