summaryrefslogtreecommitdiffstats
path: root/payloads
diff options
context:
space:
mode:
authorMatt DeVillier <matt.devillier@gmail.com>2020-04-29 15:29:27 -0500
committerMatt DeVillier <matt.devillier@gmail.com>2020-04-30 21:47:59 +0000
commit98a47ac9b52cad2ec94204e6839e0bb8fdfb30f3 (patch)
tree5f054ede0e5546d0913801d6f3aaeebf9edbf120 /payloads
parent247d027a4fecb74385c4ddd91035d190d1a1b204 (diff)
downloadcoreboot-98a47ac9b52cad2ec94204e6839e0bb8fdfb30f3.tar.gz
coreboot-98a47ac9b52cad2ec94204e6839e0bb8fdfb30f3.tar.bz2
coreboot-98a47ac9b52cad2ec94204e6839e0bb8fdfb30f3.zip
payloads/tianocore: Fix check for custom bootsplash
-n needs to check against a string, but if CONFIG_TIANOCORE_BOOTSPLASH_FILE is unset, then $(CONFIG_TIANOCORE_BOOTSPLASH_FILE) evaluates to nothing and the check fails, leading the Makefile to try and copy a non- existant file/path. Change-Id: Iff717dd48748cff16f485bafaa91c7a225fb5bdb Signed-off-by: Matt DeVillier <matt.devillier@gmail.com> Reviewed-on: https://review.coreboot.org/c/coreboot/+/40860 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Angel Pons <th3fanbus@gmail.com> Reviewed-by: Paul Menzel <paulepanter@users.sourceforge.net>
Diffstat (limited to 'payloads')
-rw-r--r--payloads/external/tianocore/Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/payloads/external/tianocore/Makefile b/payloads/external/tianocore/Makefile
index 1dc368db7ecb..21bae758dad9 100644
--- a/payloads/external/tianocore/Makefile
+++ b/payloads/external/tianocore/Makefile
@@ -94,7 +94,7 @@ checktools:
build: update checktools
unset CC; $(MAKE) -C $(project_dir)/BaseTools
echo " build $(project_name) $(TAG)"
- if [ -n $(CONFIG_TIANOCORE_BOOTSPLASH_FILE) ]; then \
+ if [ -n "$(CONFIG_TIANOCORE_BOOTSPLASH_FILE)" ]; then \
echo " Copying custom bootsplash image"; \
case "$(CONFIG_TIANOCORE_BOOTSPLASH_FILE)" in \
/*) cp $(CONFIG_TIANOCORE_BOOTSPLASH_FILE) \