diff options
author | EWouters <6179932+EWouters@users.noreply.github.com> | 2022-06-01 20:40:18 +0200 |
---|---|---|
committer | Linus Groh <mail@linusgroh.de> | 2022-06-08 11:40:31 +0100 |
commit | 6238b3896a297da808749aa3442383501274106d (patch) | |
tree | 273f77bfbffa7fe7205f274f772f5b2a78aeecb6 /Ports/bc/package.sh | |
parent | 49928a5703bbd25e97503fcb1ba6e20d2780aa76 (diff) | |
download | serenity-6238b3896a297da808749aa3442383501274106d.zip |
Ports/bc: Remove hardcoded `HOSTCC`
The configure script will pick up the `HOSTCC` via `HOST_CC`, which is
defined in `Ports/.hosted_defs.sh`.
Diffstat (limited to 'Ports/bc/package.sh')
-rwxr-xr-x | Ports/bc/package.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Ports/bc/package.sh b/Ports/bc/package.sh index bac54fb304..4c4200cf99 100755 --- a/Ports/bc/package.sh +++ b/Ports/bc/package.sh @@ -10,5 +10,5 @@ configopts=("--prefix=/usr/local" "--disable-nls") export CFLAGS='-O3 -flto' configure() { - run env HOSTCC=gcc ./"$configscript" "${configopts[@]}" + run ./"${configscript}" "${configopts[@]}" } |