From 8d50e42a5150fd87caab933721368a6bf4571aef Mon Sep 17 00:00:00 2001 From: Elyes Haouas Date: Sat, 28 Jan 2023 12:54:28 +0100 Subject: [PATCH] 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 Reviewed-on: https://review.coreboot.org/c/coreboot/+/72512 Tested-by: build bot (Jenkins) Reviewed-by: Felix Singer --- util/crossgcc/buildgcc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/util/crossgcc/buildgcc b/util/crossgcc/buildgcc index 56a77b0ab7..272a127066 100755 --- a/util/crossgcc/buildgcc +++ b/util/crossgcc/buildgcc @@ -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