diff options
author | Patrick Georgi <patrick@georgi-clan.de> | 2016-01-26 22:25:40 +0100 |
---|---|---|
committer | Martin Roth <martinroth@google.com> | 2016-01-27 03:50:29 +0100 |
commit | dd4b66e228bf3d82dcb79ded9f32598ce8f253f5 (patch) | |
tree | 8eebdf4853ff4adaba985145aeee4aa35ac3029d /Makefile.inc | |
parent | 7ee6cd5901a958e9befce90d8a1c4da4b544e5a8 (diff) | |
download | coreboot-dd4b66e228bf3d82dcb79ded9f32598ce8f253f5.tar.xz |
build system: Fix UPDATE_IMAGE
A quote was missing in a command.
Change-Id: I04148538007e5c450c6be113aab8a7fbb534db26
Signed-off-by: Patrick Georgi <patrick@georgi-clan.de>
Reported-by: Timothy Pearson <tpearson@raptorengineeringinc.com>
Reviewed-on: https://review.coreboot.org/13474
Reviewed-by: Timothy Pearson <tpearson@raptorengineeringinc.com>
Reviewed-by: Paul Menzel <paulepanter@users.sourceforge.net>
Reviewed-by: Nico Huber <nico.h@gmx.de>
Tested-by: build bot (Jenkins)
Reviewed-by: Martin Roth <martinroth@google.com>
Tested-by: Raptor Engineering Automated Test Stand <noreply@raptorengineeringinc.com>
Diffstat (limited to 'Makefile.inc')
-rw-r--r-- | Makefile.inc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile.inc b/Makefile.inc index 5f9886404e..86ccc31ed9 100644 --- a/Makefile.inc +++ b/Makefile.inc @@ -784,7 +784,7 @@ prebuild-files = \ $(obj)/coreboot.pre: $$(prebuilt-files) $(CBFSTOOL) mv $(obj)/coreboot.rom $@.tmp || \ (echo "Error: You have UPDATE_IMAGE set in Kconfig, but have no existing image to update." && \ - echo Exiting." && \ + echo "Exiting." && \ false) $(prebuild-files) true mv $@.tmp $@ |