From f85232a2397cd4f61da2cc548d8b9e124f675723 Mon Sep 17 00:00:00 2001 From: James Bardin Date: Wed, 16 Nov 2016 13:41:56 -0500 Subject: [PATCH] Remove darwin/386 from the build There isn't a supported configuration that runs darwin/386, so remove it from the build. --- scripts/build.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/build.sh b/scripts/build.sh index 63f4c6726..ecd5097f7 100755 --- a/scripts/build.sh +++ b/scripts/build.sh @@ -17,7 +17,7 @@ GIT_DIRTY=$(test -n "`git status --porcelain`" && echo "+CHANGES" || true) # Determine the arch/os combos we're building for XC_ARCH=${XC_ARCH:-"386 amd64 arm"} XC_OS=${XC_OS:-linux darwin windows freebsd openbsd solaris} -XC_EXCLUDE_OSARCH="!darwin/arm" +XC_EXCLUDE_OSARCH="!darwin/arm !darwin/386" # Delete the old dir echo "==> Removing old directory..."