crossgcc/buildgcc: Add missing "\" at build_NASM

"\" is missing at the end of CC line for build_NASM.

Change-Id: Ic29ee731def31f958f939efe19bdb55b503eb6ba
Signed-off-by: Elyes Haouas <ehaouas@noos.fr>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/72512
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Felix Singer <felixsinger@posteo.net>
This commit is contained in:
Elyes Haouas 2023-01-28 12:54:28 +01:00 committed by Felix Singer
parent 69b8194946
commit 8d50e42a51
1 changed files with 1 additions and 1 deletions

View File

@ -898,7 +898,7 @@ build_CMAKE() {
}
build_NASM() {
CC="$(hostcc host)" CXX="$(hostcxx host)" CFLAGS="$HOSTCFLAGS"
CC="$(hostcc host)" CXX="$(hostcxx host)" CFLAGS="$HOSTCFLAGS" \
../${NASM_DIR}/configure \
--prefix="$TARGETDIR" || touch .failed
# shellcheck disable=SC2086