From f5f5e17cb6c0e255452bf215161fb5f4f1efe6c6 Mon Sep 17 00:00:00 2001 From: "Todd C. Miller" Date: Tue, 28 Apr 2015 14:54:44 -0600 Subject: [PATCH] There's no point in building i386 binaries for Mac OS X 10.7 and higher. --- mkpkg | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/mkpkg b/mkpkg index a32090f98..b0aa82b1f 100755 --- a/mkpkg +++ b/mkpkg @@ -217,8 +217,8 @@ case "$osversion" in ;; macos*) case "$osversion" in - *i386|*x86_64) - # Build intel-only universal binaries + macos10[0-6]i386|macos10[0-6]x86_64) + # Build intel universal binaries for 10.6 and below ARCH_FLAGS="-arch i386 -arch x86_64" ;; esac