From a0d447072a16730379a186a9b678cf7995fa2f47 Mon Sep 17 00:00:00 2001 From: Subrata Banik Date: Fri, 18 Aug 2023 20:17:16 +0530 Subject: [PATCH] drivers/intel/fsp2_0: Fix extraneous text after else directive Fix the issue by adding the "ifeq" keyword which makes the extraneous text a correct conditional directive. Change-Id: Id8a8aa7acfdaeb0549f417fb013b2535a7298045 Signed-off-by: Subrata Banik Reviewed-on: https://review.coreboot.org/c/coreboot/+/77286 Reviewed-by: Felix Singer Tested-by: build bot (Jenkins) Reviewed-by: Martin L Roth --- src/drivers/intel/fsp2_0/Makefile.inc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/drivers/intel/fsp2_0/Makefile.inc b/src/drivers/intel/fsp2_0/Makefile.inc index ce0ad695b9..bdfee9353b 100644 --- a/src/drivers/intel/fsp2_0/Makefile.inc +++ b/src/drivers/intel/fsp2_0/Makefile.inc @@ -106,7 +106,7 @@ logo.bmp-file := $(call strip_quotes,$(CONFIG_FSP2_0_LOGO_FILE_NAME)) logo.bmp-type := raw ifeq ($(CONFIG_BMP_LOGO_COMPRESS_LZMA),y) logo.bmp-compression := LZMA -else ($(CONFIG_BMP_LOGO_COMPRESS_LZ4),y) +else ifeq ($(CONFIG_BMP_LOGO_COMPRESS_LZ4),y) logo.bmp-compression := LZ4 endif