diff options
author | Elyes Haouas <ehaouas@noos.fr> | 2023-01-28 12:54:28 +0100 |
---|---|---|
committer | Felix Singer <felixsinger@posteo.net> | 2023-01-31 13:47:30 +0000 |
commit | 8d50e42a5150fd87caab933721368a6bf4571aef (patch) | |
tree | 868bf795c98050ef38c540cc7a1c610a68877d8e /util/crossgcc | |
parent | 69b81949462c5a7d16067ab086fb7d9826bb963f (diff) |
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>
Diffstat (limited to 'util/crossgcc')
-rwxr-xr-x | util/crossgcc/buildgcc | 2 |
1 files changed, 1 insertions, 1 deletions
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 |