Ports/bc: Remove hardcoded HOSTCC

The configure script will pick up the `HOSTCC` via `HOST_CC`, which is
defined in `Ports/.hosted_defs.sh`.
This commit is contained in:
EWouters 2022-06-01 20:40:18 +02:00 committed by Linus Groh
parent 49928a5703
commit 6238b3896a
Notes: sideshowbarker 2024-07-17 11:06:06 +09:00

View File

@ -10,5 +10,5 @@ configopts=("--prefix=/usr/local" "--disable-nls")
export CFLAGS='-O3 -flto'
configure() {
run env HOSTCC=gcc ./"$configscript" "${configopts[@]}"
run ./"${configscript}" "${configopts[@]}"
}