diff options
author | Matt DeVillier <matt.devillier@gmail.com> | 2022-07-31 15:57:40 -0500 |
---|---|---|
committer | Felix Held <felix-coreboot@felixheld.de> | 2022-08-02 12:19:34 +0000 |
commit | 4c24606637c2133f0e459ba324f847d5714b9e12 (patch) | |
tree | ab13c4468b582cba045a34c4b9024cdc76fd8956 /payloads/external | |
parent | b739d80197d7a92ad357d0e45ea0f22b4a06b09f (diff) |
payloads/tianocore/Makefile: Fix restoring default boot logo
the missing `; \` at the end of the line meant subsequent lines
were no longer run from $project_dir, so Logo.bmp was silently
failing to restore. This led to the working dir being dirty,
and on subsequent runs, any change to a different branch in the
same repo would fail.
Change-Id: I17a323bc2dda19b69d809e398b273f24e14b43af
Signed-off-by: Matt DeVillier <matt.devillier@gmail.com>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/66321
Reviewed-by: Sean Rhodes <sean@starlabs.systems>
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Diffstat (limited to 'payloads/external')
-rw-r--r-- | payloads/external/tianocore/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/payloads/external/tianocore/Makefile b/payloads/external/tianocore/Makefile index 7f6fe92897..9841604d09 100644 --- a/payloads/external/tianocore/Makefile +++ b/payloads/external/tianocore/Makefile @@ -188,7 +188,7 @@ build: update logo checktools cat ../tools_def.txt >> $(project_dir)/Conf/tools_def.txt; \ fi; \ build $(BUILD_STR); \ - mkdir -p $(project_dir)/../output + mkdir -p $(project_dir)/../output; \ mv $(project_dir)/Build/$(bootloader)*/*/FV/UEFIPAYLOAD.fd $(project_dir)/../output/UEFIPAYLOAD.fd; \ git checkout MdeModulePkg/Logo/Logo.bmp > /dev/null 2>&1 || true |