summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Niewöhner <foss@mniewoehner.de>2020-05-01 23:01:28 +0200
committerPatrick Georgi <pgeorgi@google.com>2020-05-04 09:45:53 +0000
commit7f9c064263811700329812e16828b5b97cf916e5 (patch)
tree4329807c2301980b00b8024ade89c503c6d06bf9
parent7ba4ada8af425c3db4af212e7970bf2df0338633 (diff)
downloadcoreboot-7f9c064263811700329812e16828b5b97cf916e5.tar.xz
payloads/external/GRUB2: Makefile: fix checkout hint
The git checkout hint introduced in cb:36343 does not get printed but executed instead. Escape the single-quotes to fix this. Signed-off-by: Michael Niewöhner <foss@mniewoehner.de> Change-Id: I1277c3788a141b25cd9f22ec0476ee56b64aea4d Reviewed-on: https://review.coreboot.org/c/coreboot/+/40954 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Werner Zeh <werner.zeh@siemens.com>
-rw-r--r--payloads/external/GRUB2/Makefile3
1 files changed, 2 insertions, 1 deletions
diff --git a/payloads/external/GRUB2/Makefile b/payloads/external/GRUB2/Makefile
index 4dfedbe96e..bb7b5f8457 100644
--- a/payloads/external/GRUB2/Makefile
+++ b/payloads/external/GRUB2/Makefile
@@ -22,7 +22,8 @@ ifeq ($(shell test -d $(project_dir) && \
git -C $(project_dir) checkout -f $(TAG-y)
else
echo "WARNING: index/tree not clean, skipping update / force checkout."
- echo " Checkout manually with `git -C $(project_dir) checkout -f`."
+ echo " Checkout manually with "\
+ "\`git -C payloads/external/GRUB2/$(project_dir) checkout -f\`."
endif
grub2/build/config.h: $(CONFIG_DEP) | checkout