summaryrefslogtreecommitdiffstats
path: root/Makefile.inc
diff options
context:
space:
mode:
authorMartin Roth <martinroth@chromium.org>2016-08-08 16:14:55 -0600
committerMartin Roth <martinroth@google.com>2016-08-10 21:12:03 +0200
commit93ef3ffdf055763708e66ae94bf98d2d0ea29ee0 (patch)
treef73a69ed3fbde821fc9de1e1e9ae37c754076ce8 /Makefile.inc
parentfc46583807d4d6e71127952174152af32de38b9a (diff)
downloadcoreboot-93ef3ffdf055763708e66ae94bf98d2d0ea29ee0.tar.gz
coreboot-93ef3ffdf055763708e66ae94bf98d2d0ea29ee0.tar.bz2
coreboot-93ef3ffdf055763708e66ae94bf98d2d0ea29ee0.zip
Makefiles: Use $(MAINBOARD_DIR) instead of $(CONFIG_MAINBOARD_DIR)
The variable MAINBOARD_DIR already has the quotes stripped off. Change-Id: Ib434ce92bdbc49180fb3f713b26d65ba4cf8c441 Signed-off-by: Martin Roth <martinroth@chromium.org> Reviewed-on: https://review.coreboot.org/16117 Tested-by: build bot (Jenkins) Reviewed-by: Lee Leahy <leroy.p.leahy@intel.com> Reviewed-by: Patrick Georgi <pgeorgi@google.com>
Diffstat (limited to 'Makefile.inc')
-rw-r--r--Makefile.inc2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile.inc b/Makefile.inc
index 63f9b0e1594d..917426f08a16 100644
--- a/Makefile.inc
+++ b/Makefile.inc
@@ -60,7 +60,7 @@ coreboot: build-dirs $(obj)/coreboot.rom $(obj)/cbfstool $(obj)/rmodtool $(obj)/
# targets after the build completes by creating a Makefile.inc in the
# site-local directory with a target named 'build_complete::'
build_complete:: coreboot
- printf "\nBuilt %s (%s)\n" $(CONFIG_MAINBOARD_DIR) \
+ printf "\nBuilt %s (%s)\n" $(MAINBOARD_DIR) \
$(CONFIG_MAINBOARD_PART_NUMBER)
# This target can be used to run rules after all files were added to CBFS,