Fix the check for whether to include 32-bit arch in Mac OS X packages.

This commit is contained in:
Todd C. Miller
2015-10-25 09:10:15 -06:00
parent 202dd1ccf5
commit e244b0cda2

2
mkpkg
View File

@@ -241,7 +241,7 @@ case "$osversion" in
;;
macos*)
case "$osversion" in
macos10[0-6]i386|macos10[0-6]x86_64)
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"
;;