From 280d48529670d68622de0c8be057c086fd28b55e Mon Sep 17 00:00:00 2001 From: Renato Botelho Date: Wed, 30 Mar 2016 20:21:56 -0300 Subject: Remove arch from repo path for now, poudriere cannot deal with big names --- tools/builder_common.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'tools/builder_common.sh') 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 -- cgit v1.1