make.sh: Build for x86_64 by default

Signed-off-by: Michael Tremer <michael.tremer@ipfire.org>
This commit is contained in:
Michael Tremer
2018-12-02 10:23:15 +00:00
parent 91e08f20ff
commit 87487585c0

View File

@@ -253,7 +253,10 @@ configure_build() {
configure_build_guess() {
case "${HOST_ARCH}" in
x86_64|i686|i586)
x86_64)
echo "x86_64"
;;
i?86)
echo "i586"
;;