diff --git a/recipes/atk/recipe.sh b/recipes/atk/recipe.sh
index 802853de5102b04f834cbe8472a7f64e54ece61a..1451b72b4cd0b1a8460979d08885d12d11ec89fa 100755
--- a/recipes/atk/recipe.sh
+++ b/recipes/atk/recipe.sh
@@ -13,7 +13,7 @@ function recipe_update {
 }
 
 function recipe_build {
-	wget -O config.sub http://git.savannah.gnu.org/cgit/config.git/plain/config.sub
+	wget -O config.sub "https://gitlab.redox-os.org/redox-os/gnu-config/-/raw/master/config.sub?inline=false"
 	sysroot="$(realpath ../sysroot)"
 	export CFLAGS="-I$sysroot/include"
 	export LDFLAGS="-L$sysroot/lib --static"
diff --git a/recipes/autoconf/recipe.sh b/recipes/autoconf/recipe.sh
index ff9e0242db195fd4ca2d25e4c1c52e98e99a448c..28fe7211ed41f4f81d664968d661350082dc8f31 100644
--- a/recipes/autoconf/recipe.sh
+++ b/recipes/autoconf/recipe.sh
@@ -12,7 +12,7 @@ function recipe_update {
 }
 
 function recipe_build {
-    wget -O build-aux/config.sub http://git.savannah.gnu.org/cgit/config.git/plain/config.sub
+    wget -O build-aux/config.sub "https://gitlab.redox-os.org/redox-os/gnu-config/-/raw/master/config.sub?inline=false"
     ./configure --build=${BUILD} --host=${HOST} --prefix=''
     "$REDOX_MAKE" -j"$($NPROC)"
     skip=1
diff --git a/recipes/automake/recipe.sh b/recipes/automake/recipe.sh
index 92649e648ca78bb3eae13ebae12b2e729e3f99e6..9f97b2c0aa3ff7f2c563650a21617ffa15b2b578 100644
--- a/recipes/automake/recipe.sh
+++ b/recipes/automake/recipe.sh
@@ -12,7 +12,7 @@ function recipe_update {
 }
 
 function recipe_build {
-    wget -O lib/config.sub http://git.savannah.gnu.org/cgit/config.git/plain/config.sub
+    wget -O lib/config.sub "https://gitlab.redox-os.org/redox-os/gnu-config/-/raw/master/config.sub?inline=false"
     sed -i 's|.*/doc/help2man.*|\&\& true|' Makefile.in
     sed -i 's|install-info-am install-man|install-info-am|' Makefile.in
 
diff --git a/recipes/bash/recipe.sh b/recipes/bash/recipe.sh
index c0a952e0811030d915bc781fb9a515e61c783eaf..d5545b2b0d628c6eb7b63c0ff011778174e215bd 100644
--- a/recipes/bash/recipe.sh
+++ b/recipes/bash/recipe.sh
@@ -16,7 +16,7 @@ function recipe_build {
     sysroot="$PWD/../sysroot"
     export LDFLAGS="-L$sysroot/lib -static"
     export CPPFLAGS="-I$sysroot/include"
-    wget -O support/config.sub http://git.savannah.gnu.org/cgit/config.git/plain/config.sub
+    wget -O support/config.sub "https://gitlab.redox-os.org/redox-os/gnu-config/-/raw/master/config.sub?inline=false"
     ./configure \
         --build=${BUILD} \
         --host=${HOST} \
diff --git a/recipes/bash/recipe.toml b/recipes/bash/recipe.toml
index be87f9d682e1d644ff42222f901449d512003118..685091a9866f52d4c97329a19f618bc3f168bb0e 100644
--- a/recipes/bash/recipe.toml
+++ b/recipes/bash/recipe.toml
@@ -4,7 +4,7 @@ patches = [
     "redox.patch"
 ]
 script = """
-wget -O support/config.sub http://git.savannah.gnu.org/cgit/config.git/plain/config.sub
+wget -O support/config.sub "https://gitlab.redox-os.org/redox-os/gnu-config/-/raw/master/config.sub?inline=false"
 """
 
 [build]
diff --git a/recipes/curl/recipe.sh b/recipes/curl/recipe.sh
index 3222b8e0457be71717357a8e817ea0526b202895..e9554ac4b8f1bfcf9a01936dfc41be23da62106d 100644
--- a/recipes/curl/recipe.sh
+++ b/recipes/curl/recipe.sh
@@ -19,7 +19,7 @@ function recipe_build {
     sysroot="$(realpath ../sysroot)"
     export CFLAGS="-I$sysroot/include"
     export LDFLAGS="-L$sysroot/lib --static"
-    wget -O config.sub http://git.savannah.gnu.org/cgit/config.git/plain/config.sub
+    wget -O config.sub "https://gitlab.redox-os.org/redox-os/gnu-config/-/raw/master/config.sub?inline=false"
     autoreconf -i
     ./configure \
         --prefix=/ \
diff --git a/recipes/curl/recipe.toml b/recipes/curl/recipe.toml
index 39af949ffc92be2d519c5c92762c1000e758fdc0..244f9c653a70852b3a53083d3e7b23dfd3fae32b 100644
--- a/recipes/curl/recipe.toml
+++ b/recipes/curl/recipe.toml
@@ -11,7 +11,7 @@ dependencies = [
 ]
 script = """
 rsync -av --delete "${COOKBOOK_SOURCE}/" ./
-wget -O config.sub http://git.savannah.gnu.org/cgit/config.git/plain/config.sub
+wget -O config.sub "https://gitlab.redox-os.org/redox-os/gnu-config/-/raw/master/config.sub?inline=false"
 autoreconf -i
 COOKBOOK_CONFIGURE="./configure"
 COOKBOOK_CONFIGURE_FLAGS=(
diff --git a/recipes/dosbox/recipe.sh b/recipes/dosbox/recipe.sh
index e6b121fc1322a9d698e4182d14ed0e3785fd1fb2..45b11c95836fbd988db42fc30e62b899f1fd529b 100644
--- a/recipes/dosbox/recipe.sh
+++ b/recipes/dosbox/recipe.sh
@@ -18,7 +18,7 @@ function recipe_build {
     export CPPFLAGS="-I$sysroot/include/SDL"
     export LDFLAGS="-L$sysroot/lib -static"
     ./autogen.sh
-    wget -O config.sub http://git.savannah.gnu.org/cgit/config.git/plain/config.sub
+    wget -O config.sub "https://gitlab.redox-os.org/redox-os/gnu-config/-/raw/master/config.sub?inline=false"
     ./configure \
         --build=${BUILD} \
         --host=${HOST} \
diff --git a/recipes/fontconfig/recipe.sh b/recipes/fontconfig/recipe.sh
index 7996d983c2f070b554f27df4bcb85a9ffe0b0ec9..81f034092d8a9bcd57d76086af080ab9ba4a9c28 100755
--- a/recipes/fontconfig/recipe.sh
+++ b/recipes/fontconfig/recipe.sh
@@ -13,7 +13,7 @@ function recipe_update {
 }
 
 function recipe_build {
-	wget -O config.sub http://git.savannah.gnu.org/cgit/config.git/plain/config.sub
+	wget -O config.sub "https://gitlab.redox-os.org/redox-os/gnu-config/-/raw/master/config.sub?inline=false"
 	sysroot="$(realpath ../sysroot)"
 	export CFLAGS="-I$sysroot/include"
 	export LDFLAGS="-L$sysroot/lib --static"
diff --git a/recipes/freeciv/recipe.sh b/recipes/freeciv/recipe.sh
index 9caae43ab8ef7cc8cf873e9cedbcd1bbda581746..b62660d904a533d1ba63c197b1dfdb1cd6369974 100644
--- a/recipes/freeciv/recipe.sh
+++ b/recipes/freeciv/recipe.sh
@@ -13,7 +13,7 @@ function recipe_update {
 }
 
 function recipe_build {
-    wget -O bootstrap/config.sub http://git.savannah.gnu.org/cgit/config.git/plain/config.sub
+    wget -O bootstrap/config.sub "https://gitlab.redox-os.org/redox-os/gnu-config/-/raw/master/config.sub?inline=false"
     sysroot="$(realpath ../sysroot)"
     export CFLAGS="-I$sysroot/include"
     export LDFLAGS="-L$sysroot/lib"
diff --git a/recipes/gettext/recipe.sh b/recipes/gettext/recipe.sh
index 056f0959c9ffef1e9fa998c06e48c0aec3ee434f..bffce9cc77e07a724b5d4cb68a5ad763b3eeffd4 100644
--- a/recipes/gettext/recipe.sh
+++ b/recipes/gettext/recipe.sh
@@ -16,7 +16,7 @@ function recipe_build {
     sysroot="$(realpath ../sysroot)"
     export CFLAGS="-I$sysroot/include"
     export LDFLAGS="-L$sysroot/lib --static"
-    wget -O build-aux/config.sub http://git.savannah.gnu.org/cgit/config.git/plain/config.sub
+    wget -O build-aux/config.sub "https://gitlab.redox-os.org/redox-os/gnu-config/-/raw/master/config.sub?inline=false"
     ./configure \
         --build=${BUILD} \
         --host=${HOST} \
diff --git a/recipes/gettext/recipe.toml b/recipes/gettext/recipe.toml
index 4460b4494b817a2115c0d7ad684d000ba4f450a4..3c653274ae016162d829c9e6dc33c47cfc3d2009 100644
--- a/recipes/gettext/recipe.toml
+++ b/recipes/gettext/recipe.toml
@@ -4,7 +4,7 @@ patches = [
     "redox.patch"
 ]
 script = """
-wget -O build-aux/config.sub http://git.savannah.gnu.org/cgit/config.git/plain/config.sub
+wget -O build-aux/config.sub "https://gitlab.redox-os.org/redox-os/gnu-config/-/raw/master/config.sub?inline=false"
 """
 
 [build]
diff --git a/recipes/harfbuzz/recipe.sh b/recipes/harfbuzz/recipe.sh
index f7cce8908a890c828396ac2e569086345a4c4085..e36ffcc46272ae31ad45c49f4040faa43ac021d2 100644
--- a/recipes/harfbuzz/recipe.sh
+++ b/recipes/harfbuzz/recipe.sh
@@ -16,7 +16,7 @@ function recipe_build {
     sysroot="$(realpath ../sysroot)"
     export CFLAGS="-I$sysroot/include"
     export LDFLAGS="-L$sysroot/lib --static"
-    #wget -O build-aux/config.sub http://git.savannah.gnu.org/cgit/config.git/plain/config.sub
+    #wget -O build-aux/config.sub "https://gitlab.redox-os.org/redox-os/gnu-config/-/raw/master/config.sub?inline=false"
     FREETYPE_CFLAGS="$("${PKG_CONFIG}" --cflags freetype2)"
     FREETYPE_LIBS="$("${PKG_CONFIG}" --libs freetype2)"
     ./configure \
diff --git a/recipes/libffi/recipe.sh b/recipes/libffi/recipe.sh
index a78c84f6f1a6f7791919d5b23bba8a031c7071fb..b7f841c39bd771887fae537a45a5f3c70e51a08f 100644
--- a/recipes/libffi/recipe.sh
+++ b/recipes/libffi/recipe.sh
@@ -16,7 +16,7 @@ function recipe_build {
     sysroot="$(realpath ../sysroot)"
     export CFLAGS="-I$sysroot/include"
     export LDFLAGS="-L$sysroot/lib"
-    wget -O config.sub http://git.savannah.gnu.org/cgit/config.git/plain/config.sub
+    wget -O config.sub "https://gitlab.redox-os.org/redox-os/gnu-config/-/raw/master/config.sub?inline=false"
     ./configure \
         --build=${BUILD} \
         --host=${HOST} \
diff --git a/recipes/libogg/recipe.sh b/recipes/libogg/recipe.sh
index 577e7b1a82590365aaaf7c7581b9dfd340796b97..0472da5828e3414388ce3055d1afff83dc9b6b16 100644
--- a/recipes/libogg/recipe.sh
+++ b/recipes/libogg/recipe.sh
@@ -13,7 +13,7 @@ function recipe_update {
 }
 
 function recipe_build {
-    wget -O config.sub http://git.savannah.gnu.org/cgit/config.git/plain/config.sub
+    wget -O config.sub "https://gitlab.redox-os.org/redox-os/gnu-config/-/raw/master/config.sub?inline=false"
 
     ./configure \
         --build=${BUILD} \
diff --git a/recipes/libpng/recipe.sh b/recipes/libpng/recipe.sh
index ab3e9743ba4029b835895d9e9f428c50833d5197..5c30af562acf5028e0266971c03a261aa316c89e 100644
--- a/recipes/libpng/recipe.sh
+++ b/recipes/libpng/recipe.sh
@@ -17,7 +17,7 @@ function recipe_build {
     export CPPFLAGS="-I$sysroot/include"
     export LDFLAGS="-L$sysroot/lib --static"
     chmod +w config.sub
-    wget -O config.sub http://git.savannah.gnu.org/cgit/config.git/plain/config.sub
+    wget -O config.sub "https://gitlab.redox-os.org/redox-os/gnu-config/-/raw/master/config.sub?inline=false"
     ./configure --build=${BUILD} --host=${HOST} --prefix='/'
     "$REDOX_MAKE" -j"$($NPROC)"
     skip=1
diff --git a/recipes/libpng/recipe.toml b/recipes/libpng/recipe.toml
index ed7b95f14df8f065ff2ab3b012f417c8cdfb4fb9..0c6f6942a3fec88e9f126013b7d420a2096aece7 100644
--- a/recipes/libpng/recipe.toml
+++ b/recipes/libpng/recipe.toml
@@ -2,7 +2,7 @@
 tar = "https://github.com/glennrp/libpng/archive/v1.6.36.tar.gz"
 script = """
 chmod +w config.sub
-wget -O config.sub http://git.savannah.gnu.org/cgit/config.git/plain/config.sub
+wget -O config.sub "https://gitlab.redox-os.org/redox-os/gnu-config/-/raw/master/config.sub?inline=false"
 """
 
 
diff --git a/recipes/mesa_glu/recipe.sh b/recipes/mesa_glu/recipe.sh
index 86b0baa02d1bd127c21a577e823e6dfefc3047dc..83667dcec8ec19fb1cd529e5fba7a1248e98d39f 100644
--- a/recipes/mesa_glu/recipe.sh
+++ b/recipes/mesa_glu/recipe.sh
@@ -17,7 +17,7 @@ function recipe_build {
     export CFLAGS="-I$sysroot/include"
     export CPPFLAGS="-I$sysroot/include"
     export LDFLAGS="-L$sysroot/lib"
-    wget -O config.sub http://git.savannah.gnu.org/cgit/config.git/plain/config.sub
+    wget -O config.sub "https://gitlab.redox-os.org/redox-os/gnu-config/-/raw/master/config.sub?inline=false"
     ./configure --build=${BUILD} --host="${HOST}" --prefix=/ --enable-osmesa
     "$REDOX_MAKE" -j"$($NPROC)"
     skip=1
diff --git a/recipes/openjazz/recipe.sh b/recipes/openjazz/recipe.sh
index 847b5d1d29538ad7f37d027330b49cf0a3afd9d7..d6a7bc67c4a133634a2fa561690338973222ae44 100644
--- a/recipes/openjazz/recipe.sh
+++ b/recipes/openjazz/recipe.sh
@@ -20,7 +20,7 @@ function recipe_build {
     touch INSTALL NEWS README AUTHORS ChangeLog COPYING
     autoreconf -fvi
     autoconf
-    wget -O build-aux/config.sub http://git.savannah.gnu.org/cgit/config.git/plain/config.sub
+    wget -O build-aux/config.sub "https://gitlab.redox-os.org/redox-os/gnu-config/-/raw/master/config.sub?inline=false"
     ./configure --build=${BUILD} --host=${HOST} --prefix=''
     "$REDOX_MAKE" -j"$($NPROC)" V=1
     skip=1
diff --git a/recipes/pango/recipe.sh b/recipes/pango/recipe.sh
index 24f77bb2dda5a690e18592f4d75dbe93a0f596a6..6b051eab1ed1af19631134ac529065598caaf3b0 100755
--- a/recipes/pango/recipe.sh
+++ b/recipes/pango/recipe.sh
@@ -13,7 +13,7 @@ function recipe_update {
 }
 
 function recipe_build {
-	wget -O config.sub http://git.savannah.gnu.org/cgit/config.git/plain/config.sub
+	wget -O config.sub "https://gitlab.redox-os.org/redox-os/gnu-config/-/raw/master/config.sub?inline=false"
 	sysroot="$(realpath ../sysroot)"
 	export CFLAGS="-I$sysroot/include"
 	export LDFLAGS="-L$sysroot/lib --static"
diff --git a/recipes/patch/recipe.sh b/recipes/patch/recipe.sh
index 3c65091a732cfba3083b6be90bd8153da41015d0..3e46d2ab4ad4ca470021900805a28794ef924388 100644
--- a/recipes/patch/recipe.sh
+++ b/recipes/patch/recipe.sh
@@ -13,7 +13,7 @@ function recipe_update {
 
 function recipe_build {
     export LDFLAGS="-static"
-    wget -O build-aux/config.sub http://git.savannah.gnu.org/cgit/config.git/plain/config.sub
+    wget -O build-aux/config.sub "https://gitlab.redox-os.org/redox-os/gnu-config/-/raw/master/config.sub?inline=false"
     autoreconf
     ./configure --build=${BUILD} --host=${HOST} --prefix=/
     "$REDOX_MAKE" -j"$($NPROC)"
diff --git a/recipes/perl/recipe.sh b/recipes/perl/recipe.sh
index 8e03557ce61b01ecb405d03e362ce6450769bb61..39c9cce6eb8f4e70971443fa326156327fb263e4 100644
--- a/recipes/perl/recipe.sh
+++ b/recipes/perl/recipe.sh
@@ -16,7 +16,7 @@ function recipe_update {
 function recipe_build {
     curl -L -O --time-cond perl-cross-1.1.6.tar.gz https://github.com/arsv/perl-cross/releases/download/1.1.6/perl-cross-1.1.6.tar.gz
     tar --strip-components=1 -xvf perl-cross-1.1.6.tar.gz
-    wget -O cnf/config.sub http://git.savannah.gnu.org/cgit/config.git/plain/config.sub
+    wget -O cnf/config.sub "https://gitlab.redox-os.org/redox-os/gnu-config/-/raw/master/config.sub?inline=false"
     sysroot="$($HOST-gcc -print-sysroot)"
     ./configure --build=${BUILD} --target=${HOST} --prefix='/' --sysroot="$sysroot" --disable-mod=Sys-Syslog,Time-HiRes --with-libs='m'
     sed -i "s/^#define Netdb_name_t.*/#define Netdb_name_t const char*/" config.h # XXX
diff --git a/recipes/pkg-config/recipe.sh b/recipes/pkg-config/recipe.sh
index 4e1accb2f9b7b32980ae021fdb50d98e9dd3fdc2..0514e9168c31dc41ade7d3097a5d7b4b6887daa3 100755
--- a/recipes/pkg-config/recipe.sh
+++ b/recipes/pkg-config/recipe.sh
@@ -13,7 +13,7 @@ function recipe_update {
 }
 
 function recipe_build {
-	wget -O config.sub http://git.savannah.gnu.org/cgit/config.git/plain/config.sub
+	wget -O config.sub "https://gitlab.redox-os.org/redox-os/gnu-config/-/raw/master/config.sub?inline=false"
 	export LDFLAGS="--static"
 	./configure \
 	    --build="${BUILD}" \
diff --git a/recipes/prboom/recipe.sh b/recipes/prboom/recipe.sh
index 4569fc606a682f84723e9ad977ce8e50bf8b9c5b..77c8c8cd22bc7810d75d38401668e812ca1fb187 100644
--- a/recipes/prboom/recipe.sh
+++ b/recipes/prboom/recipe.sh
@@ -16,7 +16,7 @@ function recipe_build {
     export CFLAGS="-static"
     sysroot="$(realpath ../sysroot)"
     autoreconf -if
-    wget -O autotools/config.sub http://git.savannah.gnu.org/cgit/config.git/plain/config.sub
+    wget -O autotools/config.sub "https://gitlab.redox-os.org/redox-os/gnu-config/-/raw/master/config.sub?inline=false"
     ./configure \
         --prefix=/ \
         --build=${BUILD} \
diff --git a/recipes/scummvm/recipe.sh b/recipes/scummvm/recipe.sh
index 97efd01ddc58f1bf890fb27d1259f425b8785ad0..df55a301d9a7e3eaa30fb6570ccc509942f45299 100644
--- a/recipes/scummvm/recipe.sh
+++ b/recipes/scummvm/recipe.sh
@@ -14,7 +14,7 @@ function recipe_update {
 }
 
 function recipe_build {
-    wget -O config.sub http://git.savannah.gnu.org/cgit/config.git/plain/config.sub
+    wget -O config.sub "https://gitlab.redox-os.org/redox-os/gnu-config/-/raw/master/config.sub?inline=false"
     sysroot="$(realpath ../sysroot)"
     export LDFLAGS="-static"
     ./configure \
diff --git a/recipes/sopwith/recipe.sh b/recipes/sopwith/recipe.sh
index 5614139e6ece22b66154e7767f6e61be031404aa..678f56f72c1c0076b7535334f871052b5984e939 100644
--- a/recipes/sopwith/recipe.sh
+++ b/recipes/sopwith/recipe.sh
@@ -13,7 +13,7 @@ function recipe_update {
 }
 
 function recipe_build {
-    wget -O autotools/config.sub http://git.savannah.gnu.org/cgit/config.git/plain/config.sub
+    wget -O autotools/config.sub "https://gitlab.redox-os.org/redox-os/gnu-config/-/raw/master/config.sub?inline=false"
     sysroot="$(realpath ../sysroot)"
     export CFLAGS="-I$sysroot/include -I$sysroot/include/SDL"
     export LDFLAGS="-L$sysroot/lib -static"
diff --git a/recipes/timidity/recipe.sh b/recipes/timidity/recipe.sh
index d9c589905d0781fc787c959babba3d805ff85abc..4a0a15271477520efb97376ba0e4c82ff340c4b6 100644
--- a/recipes/timidity/recipe.sh
+++ b/recipes/timidity/recipe.sh
@@ -16,7 +16,7 @@ function recipe_update {
 function recipe_build {
     export LDFLAGS="-static"
     autoreconf -f -i
-    wget -O autoconf/config.sub http://git.savannah.gnu.org/cgit/config.git/plain/config.sub
+    wget -O autoconf/config.sub "https://gitlab.redox-os.org/redox-os/gnu-config/-/raw/master/config.sub?inline=false"
     ./configure \
         --build=${BUILD} \
         --host=${HOST} \
diff --git a/recipes/vice/recipe.sh b/recipes/vice/recipe.sh
index e024210d6c26e20a519e9fbcb6b0eafc0cde44ab..1c0c64c55a505e69ee4df3514e0ccc2b68c78d33 100644
--- a/recipes/vice/recipe.sh
+++ b/recipes/vice/recipe.sh
@@ -15,7 +15,7 @@ function recipe_update {
 
 function recipe_build {
     sysroot="$(realpath ../sysroot)"
-    wget -O config.sub http://git.savannah.gnu.org/cgit/config.git/plain/config.sub
+    wget -O config.sub "https://gitlab.redox-os.org/redox-os/gnu-config/-/raw/master/config.sub?inline=false"
 
     export sdl_config="$sysroot/bin/sdl-config"
     export CFLAGS="-I$sysroot/include -I$sysroot/include/SDL"
diff --git a/recipes/vttest/recipe.sh b/recipes/vttest/recipe.sh
index a5c17fc1be263b9df650393600c41237ce3fef08..35976b8d4b618a16cda7866795201316bec49dd0 100644
--- a/recipes/vttest/recipe.sh
+++ b/recipes/vttest/recipe.sh
@@ -13,7 +13,7 @@ function recipe_update {
 
 function recipe_build {
     export LDFLAGS="-static"
-    wget -O config.sub http://git.savannah.gnu.org/cgit/config.git/plain/config.sub
+    wget -O config.sub "https://gitlab.redox-os.org/redox-os/gnu-config/-/raw/master/config.sub?inline=false"
     ./configure \
         --build=${BUILD} \
         --host=${HOST} \
diff --git a/recipes/xz/recipe.sh b/recipes/xz/recipe.sh
index 239add3561a54ada71ed793904fd06bfd06a3945..b22738ec84cae8c648bf5d2c6984205705f82bc7 100644
--- a/recipes/xz/recipe.sh
+++ b/recipes/xz/recipe.sh
@@ -25,7 +25,7 @@ function recipe_build {
     ./autogen.sh
 
     chmod +w build-aux/config.sub
-    wget -O build-aux/config.sub http://git.savannah.gnu.org/cgit/config.git/plain/config.sub
+    wget -O build-aux/config.sub "https://gitlab.redox-os.org/redox-os/gnu-config/-/raw/master/config.sub?inline=false"
     ./configure \
         --build=${BUILD} \
         --host=${HOST} \