Fix missing $ for variable
Some checks failed
CI / crosstool (macos-13) (push) Has been cancelled
CI / crosstool (ubuntu-22.04) (push) Has been cancelled
CI / tarballs (ubuntu-22.04) (push) Has been cancelled
CI / toolchains (push) Has been cancelled

Fixes https://github.com/crosstool-ng/crosstool-ng/issues/2321
Credit to @jimbomorrison for spotting it.

Signed-off-by: Quentin Boswank <qubos@outlook.de>
This commit is contained in:
Quentin Boswank 2025-04-07 13:30:39 +02:00 committed by Chris Packham
parent f9b7dd7d69
commit a50a39aa84

View File

@ -127,7 +127,7 @@ do_gmp_backend() {
# CC_FOR_BUILD and CPP_FOR_BUILD.
CT_DoExecLog CFG \
CC_FOR_BUILD="${CT_BUILD}-gcc" \
CPP_FOR_BUILD="{CT_BUILD}-cpp" \
CPP_FOR_BUILD="${CT_BUILD}-cpp" \
CC="${host}-gcc" \
CFLAGS="${cflags} -fexceptions" \
LDFLAGS="${ldflags}" \