summaryrefslogtreecommitdiffstats
path: root/tools
diff options
context:
space:
mode:
authorRenato Botelho <renato@netgate.com>2016-05-12 17:22:03 -0300
committerStephen Beaver <sbeaver@netgate.com>2016-05-12 17:54:45 -0400
commitf5a9bb1f2180e6b9fcc9e81006524c2f6813e037 (patch)
tree91551d4fc158972847bff3b0c62a00fbeb240aca /tools
parentc032a89a890a350540df12a9d2e41b9c7d8efda5 (diff)
downloadpfsense-f5a9bb1f2180e6b9fcc9e81006524c2f6813e037.zip
pfsense-f5a9bb1f2180e6b9fcc9e81006524c2f6813e037.tar.gz
Do not enable i386 by default on amd64 host
(cherry picked from commit 44b30d595f41d69b0a4db7c032f57ca3e5d338c9)
Diffstat (limited to 'tools')
-rw-r--r--tools/builder_common.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/builder_common.sh b/tools/builder_common.sh
index 545c009..bbd64a2 100644
--- a/tools/builder_common.sh
+++ b/tools/builder_common.sh
@@ -1989,11 +1989,11 @@ poudriere_create_patch() {
poudriere_possible_archs() {
local _arch=$(uname -m)
- local _archs="i386.i386"
+ local _archs=""
# If host is amd64, we'll create both repos, and if possible armv6
if [ "${_arch}" = "amd64" ]; then
- _archs="amd64.amd64 ${_archs}"
+ _archs="amd64.amd64"
if [ -f /usr/local/bin/qemu-arm-static ]; then
# Make sure binmiscctl is ok
OpenPOWER on IntegriCloud