diff options
author | Martin Roth <martinroth@chromium.org> | 2016-08-08 16:14:55 -0600 |
---|---|---|
committer | Martin Roth <martinroth@google.com> | 2016-08-10 21:12:03 +0200 |
commit | 93ef3ffdf055763708e66ae94bf98d2d0ea29ee0 (patch) | |
tree | f73a69ed3fbde821fc9de1e1e9ae37c754076ce8 /src | |
parent | fc46583807d4d6e71127952174152af32de38b9a (diff) | |
download | coreboot-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 'src')
-rw-r--r-- | src/soc/intel/braswell/Makefile.inc | 2 | ||||
-rw-r--r-- | src/soc/intel/skylake/Makefile.inc | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/soc/intel/braswell/Makefile.inc b/src/soc/intel/braswell/Makefile.inc index 867ce43f16e0..cfa5b4ce63c8 100644 --- a/src/soc/intel/braswell/Makefile.inc +++ b/src/soc/intel/braswell/Makefile.inc @@ -57,7 +57,7 @@ CPPFLAGS_common += -I$(src)/soc/intel/braswell/ CPPFLAGS_common += -I$(src)/soc/intel/braswell/include CPPFLAGS_common += -I$(src)/vendorcode/intel/fsp/fsp1_1/braswell -CPPFLAGS_common += -I3rdparty/blobs/mainboard/$(CONFIG_MAINBOARD_DIR) +CPPFLAGS_common += -I3rdparty/blobs/mainboard/$(MAINBOARD_DIR) ifneq ($(CONFIG_GOP_SUPPORT),y) ifneq ($(CONFIG_VGA_BIOS_FILE),) diff --git a/src/soc/intel/skylake/Makefile.inc b/src/soc/intel/skylake/Makefile.inc index 068b4cc28fcf..7b27c574c5f2 100644 --- a/src/soc/intel/skylake/Makefile.inc +++ b/src/soc/intel/skylake/Makefile.inc @@ -89,7 +89,7 @@ CPPFLAGS_common += -I$(src)/soc/intel/skylake/include CPPFLAGS_common += -I$(src)/vendorcode/intel/fsp/fsp1_1/skylake # Currently used for microcode path. -CPPFLAGS_common += -I3rdparty/blobs/mainboard/$(CONFIG_MAINBOARD_DIR) +CPPFLAGS_common += -I3rdparty/blobs/mainboard/$(MAINBOARD_DIR) ROMCCFLAGS := -mcpu=p4 -fno-simplify-phi -O2 |