From 3ff92f4bc3e0091fcc2be1b0c258ddc46e8d64c7 Mon Sep 17 00:00:00 2001 From: Michael Marineau Date: Mon, 2 May 2016 20:13:26 -0700 Subject: [PATCH] bootstrap_sdk: use http instead of https Using https gives us a bit of a dep issue, cannot download the sources required to build ssl support when ssl hasn't been built yet! --- bootstrap_sdk | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/bootstrap_sdk b/bootstrap_sdk index 2035aeb0a0..3683fad94a 100755 --- a/bootstrap_sdk +++ b/bootstrap_sdk @@ -54,6 +54,11 @@ EOF catalyst_stage_default } +# Switch to HTTP because early boostrap stages do not have SSL support. +GENTOO_MIRRORS=$(portageq envvar GENTOO_MIRRORS) +GENTOO_MIRRORS="${GENTOO_MIRRORS//https:\/\//http://}" +export GENTOO_MIRRORS + catalyst_init "$@" check_gsutil_opts