diff options
author | Michael Niewöhner <foss@mniewoehner.de> | 2020-05-04 20:14:37 +0200 |
---|---|---|
committer | Matt DeVillier <matt.devillier@gmail.com> | 2020-05-04 20:45:34 +0000 |
commit | fcd9f36b6e7ee9172c950d3e0873d5c926b9be13 (patch) | |
tree | 50969b10c28e71aa8f1b179f7b2fa7fee55db212 /payloads | |
parent | 0f4977705d64a50cf823a38227b45c7b4d4eb950 (diff) |
payloads/external/GRUB2: Makefile: fix check for changed files again
This fixes the missing closing brace introduced in CB:40953.
Change-Id: I295c67ab8d7596bf54cc69d088ef1df906f58d5f
Signed-off-by: Michael Niewöhner <foss@mniewoehner.de>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/41036
Reviewed-by: Matt DeVillier <matt.devillier@gmail.com>
Reviewed-by: Angel Pons <th3fanbus@gmail.com>
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Diffstat (limited to 'payloads')
-rw-r--r-- | payloads/external/GRUB2/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/payloads/external/GRUB2/Makefile b/payloads/external/GRUB2/Makefile index bb7b5f8457..31b0f53b18 100644 --- a/payloads/external/GRUB2/Makefile +++ b/payloads/external/GRUB2/Makefile @@ -18,7 +18,7 @@ checkout: test -d $(project_dir) || git clone $(project_git_repo) $(project_dir) git -C $(project_dir) fetch ifeq ($(shell test -d $(project_dir) && \ - (git -C $(project_dir) status --ignored=no --untracked-files=no --porcelain),) + (git -C $(project_dir) status --ignored=no --untracked-files=no --porcelain)),) git -C $(project_dir) checkout -f $(TAG-y) else echo "WARNING: index/tree not clean, skipping update / force checkout." |