From: Todd C. Miller Date: Sun, 25 Oct 2015 15:10:15 +0000 (-0600) Subject: Fix the check for whether to include 32-bit arch in Mac OS X packages. X-Git-Tag: SUDO_1_8_15^2~8 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=e244b0cda256eefe62c0a0eca1a96d58e428b4ee;p=sudo Fix the check for whether to include 32-bit arch in Mac OS X packages. --- diff --git a/mkpkg b/mkpkg index b9e41d80d..1578042fc 100755 --- a/mkpkg +++ b/mkpkg @@ -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" ;;