diff --git a/config.sh b/config.sh
index 087774eb6643b9b18f1f1710fc6701f22f522f1e..752a910c23ebff3c19df7cacec9a824ed09b4a3a 100755
--- a/config.sh
+++ b/config.sh
@@ -28,6 +28,8 @@ export RANLIB="${HOST}-gcc-ranlib"
 export READELF="${HOST}-readelf"
 export STRIP="${HOST}-strip"
 
+BUILD="$(cc -dumpmachine)"
+
 export PKG_CONFIG_FOR_BUILD="pkg-config"
 
 if [[ "$OSTYPE" == "darwin"* ]]; then
diff --git a/recipes/autoconf/recipe.sh b/recipes/autoconf/recipe.sh
index 0d1447d8683df47224989a357974f428c109a4a6..2c703e47dc8fdee9b322448d71c15807570d43a3 100644
--- a/recipes/autoconf/recipe.sh
+++ b/recipes/autoconf/recipe.sh
@@ -13,7 +13,7 @@ function recipe_update {
 
 function recipe_build {
     wget -O build-aux/config.sub http://git.savannah.gnu.org/cgit/config.git/plain/config.sub
-    ./configure --host=${HOST} --prefix=''
+    ./configure --build=${BUILD} --host=${HOST} --prefix=''
     make -j"$(nproc)"
     skip=1
 }
diff --git a/recipes/automake/recipe.sh b/recipes/automake/recipe.sh
index d35d4771906822981e93a3e14a5d529e1cf640c5..3731ad3128f17f724bc2616976559f9254ef5431 100644
--- a/recipes/automake/recipe.sh
+++ b/recipes/automake/recipe.sh
@@ -16,7 +16,7 @@ function recipe_build {
     sed -i 's|.*/doc/help2man.*|\&\& true|' Makefile.in
     sed -i 's|install-info-am install-man|install-info-am|' Makefile.in
 
-    ./configure --host=${HOST} --prefix=''
+    ./configure --build=${BUILD} --host=${HOST} --prefix=''
     make -j"$(nproc)"
     skip=1
 }
diff --git a/recipes/bash/recipe.sh b/recipes/bash/recipe.sh
index c9e8672a9c02c3de483302399335ac1af4bf025e..4479616c4550f080208c98b67a68ed5ce787947c 100644
--- a/recipes/bash/recipe.sh
+++ b/recipes/bash/recipe.sh
@@ -13,7 +13,7 @@ function recipe_update {
 
 function recipe_build {
     wget -O support/config.sub http://git.savannah.gnu.org/cgit/config.git/plain/config.sub
-    ./configure --host=${HOST} --prefix=/ --disable-readline
+    ./configure --build=${BUILD} --host=${HOST} --prefix=/ --disable-readline
     make -j"$(nproc)"
     skip=1
 }
diff --git a/recipes/cmatrix/recipe.sh b/recipes/cmatrix/recipe.sh
index 3dd1d835f5dcbf35027e8d1bfc1e92a683dd68e8..52522e6926d50fcf60feb1021bdce122e1a9ef6a 100644
--- a/recipes/cmatrix/recipe.sh
+++ b/recipes/cmatrix/recipe.sh
@@ -16,7 +16,7 @@ function recipe_build {
     sysroot="$(realpath ../sysroot)"
     export LDFLAGS="-L$sysroot/lib"
     export CPPFLAGS="-I$sysroot/include"
-    ./configure --host=${HOST} --prefix=/ --without-fonts
+    ./configure --build=${BUILD} --host=${HOST} --prefix=/ --without-fonts
     make -j"$(nproc)"
     skip=1
 }
diff --git a/recipes/curl/recipe.sh b/recipes/curl/recipe.sh
index 77e30965fdaf68ae239a548f5c09b24fdd17746c..968a51c7d15b2afd4c77f27329f0e51cfdb68715 100644
--- a/recipes/curl/recipe.sh
+++ b/recipes/curl/recipe.sh
@@ -19,6 +19,7 @@ function recipe_build {
     autoreconf -i
     ./configure \
         --prefix=/ \
+        --build=${BUILD} \
         --host=${HOST} \
         --disable-tftp \
         --disable-ftp \
diff --git a/recipes/dash/recipe.sh b/recipes/dash/recipe.sh
index fa1296ccc237ac0f543921fadee3f2680d593982..37a0acebc3027f123603b2170c1479217f404cff 100644
--- a/recipes/dash/recipe.sh
+++ b/recipes/dash/recipe.sh
@@ -13,7 +13,7 @@ function recipe_update {
 
 function recipe_build {
     ./autogen.sh
-    ./configure --host=${HOST} --prefix=/
+    ./configure --build=${BUILD} --host=${HOST} --prefix=/ cross_compiling=yes
     make -j"$(nproc)"
     skip=1
 }
diff --git a/recipes/diffutils/recipe.sh b/recipes/diffutils/recipe.sh
index 474e55df68e5a60c0698f1e2d537c611b7730f89..340e0815cae7c0bc72196e1d1f4f69c88d3715d1 100644
--- a/recipes/diffutils/recipe.sh
+++ b/recipes/diffutils/recipe.sh
@@ -13,7 +13,7 @@ function recipe_update {
 
 function recipe_build {
     autoreconf
-    ./configure --host=${HOST} --prefix=/
+    ./configure --build=${BUILD} --host=${HOST} --prefix=/
     make -j"$(nproc)"
     skip=1
 }
diff --git a/recipes/dosbox/recipe.sh b/recipes/dosbox/recipe.sh
index d6771f160fc529c3995e33e93fed5f4b664fbad0..dbf089410043cb88d7564e0ca22bf68f972feb3e 100644
--- a/recipes/dosbox/recipe.sh
+++ b/recipes/dosbox/recipe.sh
@@ -19,7 +19,7 @@ function recipe_build {
     export LDFLAGS="-L$sysroot/lib"
     ./autogen.sh
     wget -O config.sub http://git.savannah.gnu.org/cgit/config.git/plain/config.sub
-    ./configure --host=${HOST} --prefix='' --disable-opengl --disable-sdltest --with-sdl-prefix="$sysroot"
+    ./configure --build=${BUILD} --host=${HOST} --prefix='' --disable-opengl --disable-sdltest --with-sdl-prefix="$sysroot"
     make -j"$(nproc)"
     skip=1
 }
diff --git a/recipes/expat/recipe.sh b/recipes/expat/recipe.sh
index e2277e7838619eb213181befe4f1acca9c082545..d8f78f611af44af0f8591831203066662c775357 100644
--- a/recipes/expat/recipe.sh
+++ b/recipes/expat/recipe.sh
@@ -12,7 +12,7 @@ function recipe_update {
 }
 
 function recipe_build {
-    ./configure --host=${HOST} --prefix=/
+    ./configure --build=${BUILD} --host=${HOST} --prefix=/
     make -j"$(nproc)"
     skip=1
 }
diff --git a/recipes/freeciv/recipe.sh b/recipes/freeciv/recipe.sh
index 179707119c9afec9ac5e02c497e1a6ee68ed1b8f..70765e96ae5ceb2ed5710c53993c4d7b28c21a3e 100644
--- a/recipes/freeciv/recipe.sh
+++ b/recipes/freeciv/recipe.sh
@@ -18,6 +18,7 @@ function recipe_build {
     export CFLAGS="-I$sysroot/include"
     export LDFLAGS="-L$sysroot/lib"
     ./configure \
+        --build=${BUILD} \
         --host="$HOST" \
         --prefix='' \
         --disable-server \
diff --git a/recipes/freetype/recipe.sh b/recipes/freetype/recipe.sh
index 5999cf0d1e3c2027d3f752ab652dbd1cba9d7e11..ea6744f4564ccb93e78e423afe73b90de52fd950 100644
--- a/recipes/freetype/recipe.sh
+++ b/recipes/freetype/recipe.sh
@@ -16,7 +16,7 @@ function recipe_build {
     sysroot="$(realpath ../sysroot)"
     export LDFLAGS="-L$sysroot/lib"
     export CPPFLAGS="-I$sysroot/include"
-    ./configure --host=${HOST} --prefix='/'
+    ./configure --build=${BUILD} --host=${HOST} --prefix='/'
     make -j"$(nproc)"
     skip=1
 }
diff --git a/recipes/gawk/recipe.sh b/recipes/gawk/recipe.sh
index 27de569469184c677ddf12601af5a45b31e8654e..98e4c08f92f65675f7f6482dc02a8b033b7f6070 100644
--- a/recipes/gawk/recipe.sh
+++ b/recipes/gawk/recipe.sh
@@ -8,7 +8,7 @@ function recipe_update {
 }
 
 function recipe_build {
-    ./configure --host=${HOST} --prefix=/ ac_cv_func_gethostbyname=no ac_cv_func_connect=no
+    ./configure --build=${BUILD} --host=${HOST} --prefix=/ ac_cv_func_gethostbyname=no ac_cv_func_connect=no
     make -j"$(nproc)"
     skip=1
 }
diff --git a/recipes/gcc/recipe.sh b/recipes/gcc/recipe.sh
index b9715cf953033cbf892439255c82624eb85113bf..93a567e93aee68fa8e6f1d11e297149ce1466745 100644
--- a/recipes/gcc/recipe.sh
+++ b/recipes/gcc/recipe.sh
@@ -27,6 +27,7 @@ function recipe_build {
     ln -sf "$sysroot/lib" "$sysroot/usr/lib"
 
     ./configure \
+        --build=${BUILD} \
         --host=${HOST} \
         --target=${HOST} \
         --prefix=/ \
diff --git a/recipes/gettext/recipe.sh b/recipes/gettext/recipe.sh
index a1cd8445c0c512bda710a36968d6dc2960320152..e19aa64c34fd31b5d59602ce4a54a2bab9f64a2b 100644
--- a/recipes/gettext/recipe.sh
+++ b/recipes/gettext/recipe.sh
@@ -18,6 +18,7 @@ function recipe_build {
     export LDFLAGS="-L$sysroot/lib"
     wget -O build-aux/config.sub http://git.savannah.gnu.org/cgit/config.git/plain/config.sub
     ./configure \
+        --build=${BUILD} \
         --host=${HOST} \
         --prefix=/ \
         --disable-shared \
diff --git a/recipes/git/recipe.sh b/recipes/git/recipe.sh
index fe275cc5903ca9b8fe2bf670cdde8e5557c4f73c..1688d1c8386d4fe1f372ab92d714701913e18016 100644
--- a/recipes/git/recipe.sh
+++ b/recipes/git/recipe.sh
@@ -19,7 +19,7 @@ function recipe_build {
     sysroot="$(realpath ../sysroot)"
     export LDFLAGS="-L$sysroot/lib"
     export CPPFLAGS="-I$sysroot/include"
-    ./configure --host=${HOST} --prefix=/ ac_cv_fread_reads_directories=yes ac_cv_snprintf_returns_bogus=yes ac_cv_lib_curl_curl_global_init=yes CURL_CONFIG=no
+    ./configure --build=${BUILD} --host=${HOST} --prefix=/ ac_cv_fread_reads_directories=yes ac_cv_snprintf_returns_bogus=yes ac_cv_lib_curl_curl_global_init=yes CURL_CONFIG=no
     make ${MAKEFLAGS} -j"$(nproc)"
     skip=1
 }
diff --git a/recipes/glib/recipe.sh b/recipes/glib/recipe.sh
index fefd49116faa155b98a689b041663f3fcaaf0e68..cb9991f09f06c5f5d6d18ef3d6c7ef4a1adbb7e2 100644
--- a/recipes/glib/recipe.sh
+++ b/recipes/glib/recipe.sh
@@ -17,6 +17,7 @@ function recipe_build {
     export CFLAGS="-I$sysroot/include"
     export LDFLAGS="-L$sysroot/lib"
     glib_cv_stack_grows=no glib_cv_uscore=no ./autogen.sh \
+        --build=${BUILD} \
         --host=${HOST} \
         --prefix=/ \
         --disable-shared \
diff --git a/recipes/gnu-binutils/recipe.sh b/recipes/gnu-binutils/recipe.sh
index cae419df40784f3c4dc1d350a23480e0c35e9fd9..16c2b954dad52cf8bf07ba982a90dd3c36c3e02d 100644
--- a/recipes/gnu-binutils/recipe.sh
+++ b/recipes/gnu-binutils/recipe.sh
@@ -17,7 +17,7 @@ function recipe_build {
     mkdir -p "$sysroot/usr"
     ln -sf "$sysroot/include" "$sysroot/usr/include"
     ln -sf "$sysroot/lib" "$sysroot/usr/lib"
-    ./configure --host=${HOST} --target=${HOST} --prefix=/ --with-sysroot=/ --with-build-sysroot="$sysroot" --disable-gdb --disable-nls --disable-werror
+    ./configure --build=${BUILD} --host=${HOST} --target=${HOST} --prefix=/ --with-sysroot=/ --with-build-sysroot="$sysroot" --disable-gdb --disable-nls --disable-werror
     make -j"$(nproc)"
     skip=1
 }
diff --git a/recipes/gnu-grep/recipe.sh b/recipes/gnu-grep/recipe.sh
index 3cf87f253e1d5b0424c69991479fbc8f007d66e3..e45ebf0b49b428d53854cf388f9c95b925029032 100644
--- a/recipes/gnu-grep/recipe.sh
+++ b/recipes/gnu-grep/recipe.sh
@@ -12,7 +12,7 @@ function recipe_update {
 }
 
 function recipe_build {
-    ./configure --host=${HOST} --prefix=/
+    ./configure --build=${BUILD} --host=${HOST} --prefix=/
     make -j"$(nproc)"
     skip=1
 }
diff --git a/recipes/gnu-make/recipe.sh b/recipes/gnu-make/recipe.sh
index 7040db16e9c7dbaf8848ef34886874786789f542..523b32e9796932321bd579461bf3e349495c48f4 100644
--- a/recipes/gnu-make/recipe.sh
+++ b/recipes/gnu-make/recipe.sh
@@ -12,7 +12,7 @@ function recipe_update {
 }
 
 function recipe_build {
-    ./configure --host=${HOST} --prefix=/ CFLAGS="-DPOSIX -DNO_ARCHIVES -DNO_OUTPUT_SYNC" --without-guile
+    ./configure --build=${BUILD} --host=${HOST} --prefix=/ CFLAGS="-DPOSIX -DNO_ARCHIVES -DNO_OUTPUT_SYNC" --without-guile
     make -j"$(nproc)"
     skip=1
 }
diff --git a/recipes/gstreamer/recipe.sh b/recipes/gstreamer/recipe.sh
index 2b6c1dad88b56fff2e5c7025f316cfa55564f1da..370edb7f41e3494325c29123b5572d0313f7d3eb 100644
--- a/recipes/gstreamer/recipe.sh
+++ b/recipes/gstreamer/recipe.sh
@@ -19,6 +19,7 @@ function recipe_build {
     export GLIB_GENMARSHAL="$(which glib-genmarshal)"
     export GLIB_MKENUMS="$(which glib-mkenums)"
     ./configure \
+        --build=${BUILD} \
         --host=${HOST} \
         --prefix=/ \
         --disable-shared \
diff --git a/recipes/harfbuzz/recipe.sh b/recipes/harfbuzz/recipe.sh
index 06f617b3ba7f1f6d2b06e8b3b5b85a8315c2f5ca..0f8a4ba04de4a3028fb5f49b97bf904266c25f45 100644
--- a/recipes/harfbuzz/recipe.sh
+++ b/recipes/harfbuzz/recipe.sh
@@ -20,6 +20,7 @@ function recipe_build {
     FREETYPE_CFLAGS="$("${PKG_CONFIG}" --cflags freetype2)"
     FREETYPE_LIBS="$("${PKG_CONFIG}" --libs freetype2)"
     ./configure \
+        --build=${BUILD} \
         --host=${HOST} \
         --prefix=/ \
         --disable-shared \
diff --git a/recipes/jansson/recipe.sh b/recipes/jansson/recipe.sh
index 82799a01cf3b47c999173d4ce4870a0ebb6a1d49..9cd618aa5f544561a66dacab0afda08b8f99c2e1 100644
--- a/recipes/jansson/recipe.sh
+++ b/recipes/jansson/recipe.sh
@@ -15,7 +15,7 @@ function recipe_build {
     sysroot="$(realpath ../sysroot)"
     export LDFLAGS="-L$sysroot/lib"
     export CPPFLAGS="-I$sysroot/include"
-    ./configure --host=${HOST} --prefix=/
+    ./configure --build=${BUILD} --host=${HOST} --prefix=/
     make -j"$(nproc)"
     skip=1
 }
diff --git a/recipes/libffi/recipe.sh b/recipes/libffi/recipe.sh
index 111c20252bab1d1e7ec98635e0a103c3a0044d59..ef6b3dbfb69e9defc5db2153849ea91f7add5eb7 100644
--- a/recipes/libffi/recipe.sh
+++ b/recipes/libffi/recipe.sh
@@ -18,6 +18,7 @@ function recipe_build {
     export LDFLAGS="-L$sysroot/lib"
     wget -O config.sub http://git.savannah.gnu.org/cgit/config.git/plain/config.sub
     ./configure \
+        --build=${BUILD} \
         --host=${HOST} \
         --prefix=/ \
         --disable-shared \
diff --git a/recipes/libiconv/recipe.sh b/recipes/libiconv/recipe.sh
index da36d9f6cdfde5d16f34f6beed4fd5de0a9c76df..6f1cedaba4315d9ff8f11fefa641e327266df312 100644
--- a/recipes/libiconv/recipe.sh
+++ b/recipes/libiconv/recipe.sh
@@ -12,7 +12,7 @@ function recipe_update {
 }
 
 function recipe_build {
-    ./configure --host=${HOST} --prefix='/' --disable-shared --enable-static
+    ./configure --build=${BUILD} --host=${HOST} --prefix='/' --disable-shared --enable-static
     make -j"$(nproc)"
     skip=1
 }
diff --git a/recipes/libjpeg/recipe.sh b/recipes/libjpeg/recipe.sh
index 5db06702bd33a7c26a5949c1608d1fe232d68a8f..b476840bec8c7b35b2b4058fda2ab63373f97181 100644
--- a/recipes/libjpeg/recipe.sh
+++ b/recipes/libjpeg/recipe.sh
@@ -12,7 +12,7 @@ function recipe_update {
 }
 
 function recipe_build {
-    ./configure --host=${HOST} --prefix='/'
+    ./configure --build=${BUILD} --host=${HOST} --prefix='/'
     make -j"$(nproc)"
     skip=1
 }
diff --git a/recipes/libpng/recipe.sh b/recipes/libpng/recipe.sh
index 0d7f16ca91a45a6f54abd2f98ad122446a66fa57..224557ffe78f30914d01148249511cbbaca0c7b3 100644
--- a/recipes/libpng/recipe.sh
+++ b/recipes/libpng/recipe.sh
@@ -18,7 +18,7 @@ function recipe_build {
     export CPPFLAGS="-I$sysroot/include"
     chmod +w config.sub
     wget -O config.sub http://git.savannah.gnu.org/cgit/config.git/plain/config.sub
-    ./configure --host=${HOST} --prefix='/'
+    ./configure --build=${BUILD} --host=${HOST} --prefix='/'
     make -j"$(nproc)"
     skip=1
 }
diff --git a/recipes/libsodium/recipe.sh b/recipes/libsodium/recipe.sh
index b516607785bc565499bfd818073dda11ca692595..ce7a4c821f6170234b76f1d53bfd5aa73b68f287 100644
--- a/recipes/libsodium/recipe.sh
+++ b/recipes/libsodium/recipe.sh
@@ -12,9 +12,8 @@ function recipe_update {
 }
 
 function recipe_build {
-    # Disclaimer: No idea what I'm doing
     ./autogen.sh
-    ./configure --host=${HOST} --prefix='/'
+    ./configure --build=${BUILD} --host=${HOST} --prefix='/'
     make -j"$(nproc)"
     skip=1
 }
diff --git a/recipes/mesa/recipe.sh b/recipes/mesa/recipe.sh
index d1e8941f8609fe0da346233320b0f83817251d8b..861cb33a15dc3b4fc7d77bbfc336650023f366d7 100644
--- a/recipes/mesa/recipe.sh
+++ b/recipes/mesa/recipe.sh
@@ -21,6 +21,7 @@ function recipe_build {
     #export LLVM_CONFIG="x86_64-unknown-redox-llvm-config"
     NOCONFIGURE=1 ./autogen.sh
     ./configure \
+        --build=${BUILD} \
         --host="${HOST}" \
         --prefix=/ \
         --disable-dri \
diff --git a/recipes/mesa_glu/recipe.sh b/recipes/mesa_glu/recipe.sh
index b93a7dbd71b2084098607a26b1e70838a8e58315..5bb2911340cee2c23edd50d3a25a7e59360347c1 100644
--- a/recipes/mesa_glu/recipe.sh
+++ b/recipes/mesa_glu/recipe.sh
@@ -18,7 +18,7 @@ function recipe_build {
     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
-    ./configure --host="${HOST}" --prefix=/ --enable-osmesa
+    ./configure --build=${BUILD} --host="${HOST}" --prefix=/ --enable-osmesa
     make -j"$(nproc)"
     skip=1
 }
diff --git a/recipes/nasm/recipe.sh b/recipes/nasm/recipe.sh
index de7fa3749be6eb4a8ae1d624b1e2f27d47922817..f2947f2ec3580304cf0fb911c39307664fb4ed7e 100644
--- a/recipes/nasm/recipe.sh
+++ b/recipes/nasm/recipe.sh
@@ -12,7 +12,7 @@ function recipe_update {
 }
 
 function recipe_build {
-    ./configure --host=${HOST} --prefix=""
+    ./configure --build=${BUILD} --host=${HOST} --prefix=""
     make -j"$(nproc)"
     skip=1
 }
diff --git a/recipes/ncdu/recipe.sh b/recipes/ncdu/recipe.sh
index 26a9a8bbfcf27ff543e60c4ad75c6be440f830cf..b59c0a69c6cfdc0b1aefb23af10d0ecf8b91a764 100644
--- a/recipes/ncdu/recipe.sh
+++ b/recipes/ncdu/recipe.sh
@@ -16,7 +16,7 @@ function recipe_build {
     export LDFLAGS="-L$sysroot/lib"
     export CPPFLAGS="-I$sysroot/include -I$sysroot/include/ncurses"
     ./configure \
-        --build x86_64-pc-linux-gnu \
+        --build=${BUILD} \
         --host "$HOST"
     make -j"$(nproc)"
     skip=1
diff --git a/recipes/ncurses/recipe.sh b/recipes/ncurses/recipe.sh
index dda9affdac0669d0d8555586f56927138a28c3cc..493572db6b478277e101bef188aa25c36d432fac 100644
--- a/recipes/ncurses/recipe.sh
+++ b/recipes/ncurses/recipe.sh
@@ -14,6 +14,7 @@ function recipe_update {
 
 function recipe_build {
     ./configure \
+        --build=${BUILD} \
         --host=${HOST} \
         --prefix="" \
         --disable-db-install \
diff --git a/recipes/ncursesw/recipe.sh b/recipes/ncursesw/recipe.sh
index 3af5af5b7083cb9438ae4c2ccae1a443a3e0f579..e2ab53f4f72a94e72f97a0de300773bc6e753ebc 100644
--- a/recipes/ncursesw/recipe.sh
+++ b/recipes/ncursesw/recipe.sh
@@ -14,7 +14,7 @@ function recipe_update {
 
 function recipe_build {
     export CPPFLAGS="-P"
-    ./configure --host=${HOST} --prefix="" --enable-widec --disable-db-install
+    ./configure --build=${BUILD} --host=${HOST} --prefix="" --enable-widec --disable-db-install
     make -j"$(nproc)"
     skip=1
 }
diff --git a/recipes/newlib/recipe.sh b/recipes/newlib/recipe.sh
index 979fb8ccf54d926f90e236fc69f748a032631671..36e79bd4e99ae9de8a9c77b89eb93619b0e09558 100644
--- a/recipes/newlib/recipe.sh
+++ b/recipes/newlib/recipe.sh
@@ -24,7 +24,7 @@ function recipe_build {
         automake-1.11 --cygnus Makefile
     popd
 
-    CC= ./configure --target="${HOST}" --prefix=/
+    CC= ./configure --build=${BUILD} --target="${HOST}" --prefix=/
     make all -j"$(nproc)"
 
     skip=1
diff --git a/recipes/openjazz/recipe.sh b/recipes/openjazz/recipe.sh
index 39d280857582a27a5e7c9fed4b662f61da7cd9f0..5eb28453ac7d55720405c99290eae54baa9390ba 100644
--- a/recipes/openjazz/recipe.sh
+++ b/recipes/openjazz/recipe.sh
@@ -21,7 +21,7 @@ function recipe_build {
     autoreconf -fvi
     autoconf
     wget -O build-aux/config.sub http://git.savannah.gnu.org/cgit/config.git/plain/config.sub
-    ./configure --host=${HOST} --prefix=''
+    ./configure --build=${BUILD} --host=${HOST} --prefix=''
     make -j"$(nproc)" V=1
     skip=1
 }
diff --git a/recipes/openttd/recipe.sh b/recipes/openttd/recipe.sh
index f0c9d232966d73628f5266f9238b482b9ee46eca..ba64524071e8c045d12565c4a6bf2552b7574dca 100644
--- a/recipes/openttd/recipe.sh
+++ b/recipes/openttd/recipe.sh
@@ -15,7 +15,7 @@ function recipe_update {
 
 function recipe_build {
     ./configure \
-        --build=`gcc -dumpmachine` \
+        --build=${BUILD} \
         --host=${HOST} \
         --prefix='' \
         --enable-static \
diff --git a/recipes/patch/recipe.sh b/recipes/patch/recipe.sh
index 52d8934d98b9f06dc167a084cbf804dd8a702a19..20e62b2038585f0724b265d6cb6cee0aa709e572 100644
--- a/recipes/patch/recipe.sh
+++ b/recipes/patch/recipe.sh
@@ -14,7 +14,7 @@ function recipe_update {
 function recipe_build {
     wget -O build-aux/config.sub http://git.savannah.gnu.org/cgit/config.git/plain/config.sub
     autoreconf
-    ./configure --host=${HOST} --prefix=/
+    ./configure --build=${BUILD} --host=${HOST} --prefix=/
     make -j"$(nproc)"
     skip=1
 }
diff --git a/recipes/pcre/recipe.sh b/recipes/pcre/recipe.sh
index 2e0e8e8cb515b2410b173b46a3e10122b3201c15..62a3aa6a94f556684e23a6f45643e25ef292f8b2 100644
--- a/recipes/pcre/recipe.sh
+++ b/recipes/pcre/recipe.sh
@@ -17,6 +17,7 @@ function recipe_build {
     export CFLAGS="-I$sysroot/include"
     export LDFLAGS="-L$sysroot/lib"
     ./configure \
+        --build=${BUILD} \
         --host=${HOST} \
         --prefix=/ \
         --disable-shared \
diff --git a/recipes/perl/recipe.sh b/recipes/perl/recipe.sh
index 0d3f6f102b4ad8e0a83a5a849477ac91bf313ffa..b4bd646af34284d88187c56a31cee1a53b355ce1 100644
--- a/recipes/perl/recipe.sh
+++ b/recipes/perl/recipe.sh
@@ -18,7 +18,7 @@ function recipe_build {
     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
     sysroot="$($HOST-gcc -print-sysroot)"
-    ./configure --target=${HOST} --prefix='/' --sysroot="$sysroot" --disable-mod=Sys-Syslog,Time-HiRes --with-libs='m'
+    ./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
     sed -i 's/#define Strerror(e).*$/#define Strerror(e) strerror(e)/' config.h #
     echo "#define HAS_VPRINTF" >> config.h
diff --git a/recipes/pixman/recipe.sh b/recipes/pixman/recipe.sh
index 617827dc792c9927223e9516e3ca0ec21a3f0cbb..708a2f711fbcef3f154e0f64f5772a1175b1432a 100755
--- a/recipes/pixman/recipe.sh
+++ b/recipes/pixman/recipe.sh
@@ -14,10 +14,11 @@ function recipe_update {
 function recipe_build {
 	sysroot="$(realpath ../sysroot)"
 	./configure \
-		--host=${HOST} \
-		--prefix=/ \
-		--disable-shared \
-		--enable-static
+            --build=${BUILD} \
+            --host=${HOST} \
+            --prefix=/ \
+            --disable-shared \
+            --enable-static
 	make -j"$(nproc)"
 	skip=1
 }
diff --git a/recipes/prboom/recipe.sh b/recipes/prboom/recipe.sh
index 6f3a5a026348ab36f90b04b4f8889b27e99aa239..3419878bc2dbb74fe3bc72e72f856cbb5da7bcae 100644
--- a/recipes/prboom/recipe.sh
+++ b/recipes/prboom/recipe.sh
@@ -16,7 +16,7 @@ function recipe_build {
     sysroot="$(realpath ../sysroot)"
     autoreconf -if
     wget -O autotools/config.sub http://git.savannah.gnu.org/cgit/config.git/plain/config.sub
-    ./configure --prefix=/ --host=${HOST} --disable-sdltest --disable-cpu-opt --disable-gl --without-net --with-sdl-prefix="$sysroot"
+    ./configure --prefix=/ --build=${BUILD} --host=${HOST} --disable-sdltest --disable-cpu-opt --disable-gl --without-net --with-sdl-prefix="$sysroot"
     make -j"$(nproc)"
     skip=1
 }
diff --git a/recipes/python/recipe.sh b/recipes/python/recipe.sh
index 3f3643db78d374b1970d6cda8ca0da1ddc66330d..ed96cb55b4f8e889bb2fbec58430e9e9dc85cf3d 100644
--- a/recipes/python/recipe.sh
+++ b/recipes/python/recipe.sh
@@ -15,7 +15,7 @@ function recipe_update {
 
 function recipe_build {
     cp ../config.site ./
-    ./configure --host=${HOST} --build=${ARCH} --prefix=/
+    ./configure --build=${BUILD} --host=${HOST} --build=${ARCH} --prefix=/
     make -j"$(nproc)"
     skip=1
 }
diff --git a/recipes/qemu/recipe.sh b/recipes/qemu/recipe.sh
index 76d854ed2a67c01d734350f8aa42e6a03a327a84..3bb11eb744364e7d14897d68a9a013a97caa6517 100644
--- a/recipes/qemu/recipe.sh
+++ b/recipes/qemu/recipe.sh
@@ -18,6 +18,7 @@ function recipe_build {
     export CPPFLAGS="-I$sysroot/include"
     export LDFLAGS="-L$sysroot/lib"
     ./configure \
+        --build=${BUILD} \
         --host="${HOST}" \
         --prefix=/
     make -j"$(nproc)"
diff --git a/recipes/readline/recipe.sh b/recipes/readline/recipe.sh
index c13c1dacb2eff4b270efd92e03cdd258e42c8f4d..d082c0b9c52303ec8dea8af624276715a090cb7b 100644
--- a/recipes/readline/recipe.sh
+++ b/recipes/readline/recipe.sh
@@ -16,7 +16,7 @@ function recipe_build {
     sysroot="$(realpath ../sysroot)"
     export LDFLAGS="-L$sysroot/lib"
     export CFLAGS="-I$sysroot/include"
-    ./configure --disable-shared --host=${HOST} --prefix=""
+    ./configure --disable-shared --build=${BUILD} --host=${HOST} --prefix=""
     make -j"$(nproc)"
     skip=1
 }
diff --git a/recipes/schismtracker/recipe.sh b/recipes/schismtracker/recipe.sh
index e9fa3a28382042b43385254d700da35fd0b3e167..92e52eb344f1882c338e7f7db5a66f8bc77298b5 100644
--- a/recipes/schismtracker/recipe.sh
+++ b/recipes/schismtracker/recipe.sh
@@ -19,7 +19,7 @@ function recipe_build {
     export LDFLAGS="-L$sysroot/lib"
     export SDL_CONFIG="$sysroot/bin/sdl-config"
     autoreconf -i
-    ./configure --host=${HOST} --prefix=''
+    ./configure --build=${BUILD} --host=${HOST} --prefix=''
     make -j"$(nproc)"
     skip=1
 }
diff --git a/recipes/scummvm/recipe.sh b/recipes/scummvm/recipe.sh
index 582a42d5d92afdd683fd63d5686713add1089fad..938b80ad94bc881014eb6762192140ba4c2341b7 100644
--- a/recipes/scummvm/recipe.sh
+++ b/recipes/scummvm/recipe.sh
@@ -18,6 +18,7 @@ function recipe_build {
     sysroot="$(realpath ../sysroot)"
 
     ./configure \
+        --build=${BUILD} \
         --host=${HOST} \
         --prefix='' \
         --with-sdl-prefix="$sysroot" \
diff --git a/recipes/sdl/recipe.sh b/recipes/sdl/recipe.sh
index 83b58ee3417b17cdceefcaa0d9a221b9b346fd09..0d9aaed297192fcc8fc24819045a544c255ba765 100644
--- a/recipes/sdl/recipe.sh
+++ b/recipes/sdl/recipe.sh
@@ -18,6 +18,7 @@ function recipe_build {
     export LDFLAGS="-L$sysroot/lib"
     ./autogen.sh
     ./configure \
+        --build=${BUILD} \
         --host=${HOST} \
         --prefix=/ \
         --disable-shared \
diff --git a/recipes/sdl2/recipe.sh b/recipes/sdl2/recipe.sh
index f17533eaa7002c0aee30424afa39b0ae135b384b..cbb8f567d2e5b065a27d01b859eee2d4a239f63c 100644
--- a/recipes/sdl2/recipe.sh
+++ b/recipes/sdl2/recipe.sh
@@ -18,6 +18,7 @@ function recipe_build {
     export LDFLAGS="-L$sysroot/lib"
     ./autogen.sh
     ./configure \
+        --build=${BUILD} \
         --host=${HOST} \
         --prefix=/ \
         --disable-shared \
diff --git a/recipes/sdl_gfx/recipe.sh b/recipes/sdl_gfx/recipe.sh
index bf0e6317705a0c364f64a9b6cd3f8803a48cda84..9a697f918de63617f58118b7657556e1f25b9db5 100644
--- a/recipes/sdl_gfx/recipe.sh
+++ b/recipes/sdl_gfx/recipe.sh
@@ -17,7 +17,7 @@ function recipe_build {
     export CFLAGS="-I$sysroot/include"
     export LDFLAGS="-L$sysroot/lib"
     ./autogen.sh
-    ./configure --prefix=/ --host=${HOST} --disable-shared --disable-sdltest
+    ./configure --prefix=/ --build=${BUILD} --host=${HOST} --disable-shared --disable-sdltest
     make -j"$(nproc)"
     skip=1
 }
diff --git a/recipes/sdl_image/recipe.sh b/recipes/sdl_image/recipe.sh
index 75c6f2c6b42573691285ba22a238512c793717b2..c7eefdd7fbfba9fd0d97b50e18e0073667b74431 100644
--- a/recipes/sdl_image/recipe.sh
+++ b/recipes/sdl_image/recipe.sh
@@ -17,7 +17,7 @@ function recipe_build {
     export CFLAGS="-I$sysroot/include"
     export LDFLAGS="-L$sysroot/lib"
     ./autogen.sh
-    ./configure --prefix=/ --host=${HOST} --disable-shared --disable-sdltest --enable-png --enable-jpg
+    ./configure --prefix=/ --build=${BUILD} --host=${HOST} --disable-shared --disable-sdltest --enable-png --enable-jpg
     make -j"$(nproc)"
     skip=1
 }
diff --git a/recipes/sdl_mixer/recipe.sh b/recipes/sdl_mixer/recipe.sh
index 12b3b4e8711fe6cc1a417f539c07b7791477f606..cf4ccfc486af21e085a47e97922b6d9e74824e64 100644
--- a/recipes/sdl_mixer/recipe.sh
+++ b/recipes/sdl_mixer/recipe.sh
@@ -19,6 +19,7 @@ function recipe_build {
     ./autogen.sh
     ./configure \
         --prefix=/ \
+        --build=${BUILD} \
         --host=${HOST} \
         --disable-shared \
         --disable-sdltest \
diff --git a/recipes/sdl_ttf/recipe.sh b/recipes/sdl_ttf/recipe.sh
index 2fbc04b1713d2b95e517315bd02b8d348b14e572..44dfbedfbadd10b313e961efe3c96efb2772c86d 100644
--- a/recipes/sdl_ttf/recipe.sh
+++ b/recipes/sdl_ttf/recipe.sh
@@ -17,7 +17,7 @@ function recipe_build {
     export CFLAGS="-I$sysroot/include"
     export LDFLAGS="-L$sysroot/lib"
     ./autogen.sh
-    ./configure --prefix=/ --host=${HOST} --disable-shared --disable-sdltest
+    ./configure --prefix=/ --build=${BUILD} --host=${HOST} --disable-shared --disable-sdltest
     make -j"$(nproc)"
     skip=1
 }
diff --git a/recipes/sed/recipe.sh b/recipes/sed/recipe.sh
index c1de02482c096929adef2d652993bb6fb7bca855..1dce077144e5caf912adeb5fdd84845a17182dc4 100644
--- a/recipes/sed/recipe.sh
+++ b/recipes/sed/recipe.sh
@@ -12,7 +12,7 @@ function recipe_update {
 }
 
 function recipe_build {
-    ./configure --host=${HOST} --prefix=/
+    ./configure --build=${BUILD} --host=${HOST} --prefix=/
     make -j"$(nproc)"
     skip=1
 }
diff --git a/recipes/sopwith/recipe.sh b/recipes/sopwith/recipe.sh
index eddace877777f536235292f726890c98eefd1531..744950736af2a855411f440ce57b9ddf5f11ebc7 100644
--- a/recipes/sopwith/recipe.sh
+++ b/recipes/sopwith/recipe.sh
@@ -18,7 +18,7 @@ function recipe_build {
     export CFLAGS="-I$sysroot/include -I$sysroot/include/SDL"
     export LDFLAGS="-L$sysroot/lib"
     export LIBS="-lSDL -lorbital" # TODO: Uses sdl-config instead of pkg-config
-    ./configure --host=${HOST} --prefix='' --with-sdl-prefix="$sysroot"
+    ./configure --build=${BUILD} --host=${HOST} --prefix='' --with-sdl-prefix="$sysroot"
     make -j"$(nproc)"
     skip=1
 }
diff --git a/recipes/ssh/recipe.sh b/recipes/ssh/recipe.sh
index 576b4b9e6ffd243ecf02be675bb402408542bb01..f213683630c4d609eb088c6916150cec8a311d35 100644
--- a/recipes/ssh/recipe.sh
+++ b/recipes/ssh/recipe.sh
@@ -16,7 +16,7 @@ function recipe_build {
     sysroot="$(realpath ../sysroot)"
     export LDFLAGS="-L$sysroot/lib"
     export CPPFLAGS="-I$sysroot/include"
-    ./configure --host=${HOST} --prefix=/
+    ./configure --build=${BUILD} --host=${HOST} --prefix=/
     make -j$(nproc)
     skip=1
 }
diff --git a/recipes/timidity/recipe.sh b/recipes/timidity/recipe.sh
index bd905cd588a9cb3c62e0e04060dc4bf35ae4195f..c10b7fee4848d11a233a24353c7b2716b183c3c0 100644
--- a/recipes/timidity/recipe.sh
+++ b/recipes/timidity/recipe.sh
@@ -16,7 +16,7 @@ function recipe_update {
 function recipe_build {
     autoreconf -f -i
     wget -O autoconf/config.sub http://git.savannah.gnu.org/cgit/config.git/plain/config.sub
-    ./configure --host=${HOST} --prefix='' --enable-vt100
+    ./configure --build=${BUILD} --host=${HOST} --prefix='' --enable-vt100
     make -j"$(nproc)"
     skip=1
 }
diff --git a/recipes/vim/recipe.sh b/recipes/vim/recipe.sh
index 98623b57b6a7e9fb58b5d0367d32b61f92b7d15b..afc09c279fe4034e720489dc9279c057aeec4208 100644
--- a/recipes/vim/recipe.sh
+++ b/recipes/vim/recipe.sh
@@ -23,7 +23,7 @@ function recipe_build {
     export vim_cv_getcwd_broken=yes
     export vim_cv_stat_ignores_slash=no
     export vim_cv_memmove_handles_overlap=yes
-    ./configure --host=${HOST} --prefix=/ --with-tlib=ncurses
+    ./configure --build=${BUILD} --host=${HOST} --prefix=/ --with-tlib=ncurses
     make -j"$(nproc)"
     skip=1
 }
diff --git a/recipes/vttest/recipe.sh b/recipes/vttest/recipe.sh
index 59adc9343aee47c8110e771173ed3beac2b0b1b2..b1147b68be0d48158e6f0df129d5f1fe494cb7a9 100644
--- a/recipes/vttest/recipe.sh
+++ b/recipes/vttest/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
-    ./configure --host=${HOST} --prefix=''
+    ./configure --build=${BUILD} --host=${HOST} --prefix=''
     make -j"$(nproc)"
     skip=1
 }
diff --git a/recipes/xz/recipe.sh b/recipes/xz/recipe.sh
index 0a643b03fc826303a29cf65efc4d63fa6d13b190..e1221711b1b55a2adfe288870dd2e5ca1c09a59c 100644
--- a/recipes/xz/recipe.sh
+++ b/recipes/xz/recipe.sh
@@ -15,7 +15,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
-    ./configure --host=${HOST} --prefix=/ --enable-threads=no
+    ./configure --build=${BUILD} --host=${HOST} --prefix=/ --enable-threads=no
     make -j"$(nproc)"
     skip=1
 }