summaryrefslogtreecommitdiffstats
path: root/tools/builder_common.sh
diff options
context:
space:
mode:
authorRenato Botelho <renato@netgate.com>2016-03-30 20:21:56 -0300
committerRenato Botelho <renato@netgate.com>2016-03-30 20:21:56 -0300
commit280d48529670d68622de0c8be057c086fd28b55e (patch)
tree7c8f8301760fc8f74ad07c18e1e38625ee0a152e /tools/builder_common.sh
parent1aa48975e32679eb87510a6d3337b63022417a17 (diff)
downloadpfsense-280d48529670d68622de0c8be057c086fd28b55e.zip
pfsense-280d48529670d68622de0c8be057c086fd28b55e.tar.gz
Remove arch from repo path for now, poudriere cannot deal with big names
Diffstat (limited to 'tools/builder_common.sh')
-rw-r--r--tools/builder_common.sh6
1 files changed, 3 insertions, 3 deletions
diff --git a/tools/builder_common.sh b/tools/builder_common.sh
index 39ccd3a..4119216 100644
--- a/tools/builder_common.sh
+++ b/tools/builder_common.sh
@@ -1893,18 +1893,18 @@ poudriere_create_patch() {
poudriere_possible_archs() {
local _arch=$(uname -m)
- local _archs="i386.i386"
+ local _archs="i386"
# If host is amd64, we'll create both repos, and if possible armv6
if [ "${_arch}" = "amd64" ]; then
- _archs="amd64.amd64 ${_archs}"
+ _archs="amd64 ${_archs}"
if [ -f /usr/local/bin/qemu-arm-static ]; then
# Make sure binmiscctl is ok
/usr/local/etc/rc.d/qemu_user_static forcestart >/dev/null 2>&1
if binmiscctl lookup armv6 >/dev/null 2>&1; then
- _archs="${_archs} arm.armv6"
+ _archs="${_archs} armv6"
fi
fi
fi
OpenPOWER on IntegriCloud