bootstrap: Fix configure.sh's host detection.

* configure.sh: Avoid setting host="" and not running $CC.
This commit is contained in:
Jan Nieuwenhuizen 2019-12-08 15:13:37 +01:00
parent 27de9aa0e3
commit 2250133322
No known key found for this signature in database
GPG Key ID: F3C1A0D9C1D65273
1 changed files with 2 additions and 2 deletions

View File

@ -39,6 +39,7 @@ while [ $# -gt 0 ]; do
;;
(--build=*)
build=${1#--build=}
host=${host-$build}
;;
(--host=*)
host=${1#--host=}
@ -56,7 +57,6 @@ done
prefix=${prefix-/usr/local}
mes_libc=${mes_libc-mes}
courageous=${courageous-false}
host=${host-$build}
AR=${AR-$(command -v ar)} || true
BASH=${BASH-$(command -v bash)}
@ -271,7 +271,7 @@ GNU Mes is configured for
tools: $mes_tools arch
Run:
sh build.sh to build mes
sh bootstrap.sh to bootstrap build mes
sh check.sh to check mes
sh install.sh to install mes
EOF