summaryrefslogtreecommitdiffstats
path: root/src/cpu/Makefile.inc
diff options
context:
space:
mode:
authorJulien Viard de Galbert <jviarddegalbert@online.net>2017-11-03 14:07:55 +0100
committerPatrick Georgi <pgeorgi@google.com>2017-11-07 12:16:58 +0000
commitc467334620cc51daa9b976a241e43a6cafbe54a8 (patch)
tree6b29ae4e8ef640bb735e11b86e24c33508dc7ea4 /src/cpu/Makefile.inc
parent76e387319b7095d533780b67dcf9f3d2f71b13ae (diff)
downloadcoreboot-c467334620cc51daa9b976a241e43a6cafbe54a8.tar.gz
coreboot-c467334620cc51daa9b976a241e43a6cafbe54a8.tar.bz2
coreboot-c467334620cc51daa9b976a241e43a6cafbe54a8.zip
Microcode: add dependency to header files
When using microcode header and updating the header (due to a new release of microcode during early development) the build system doesn't detect the header change. This commit fixes this by adding the appropriate dependency. Change-Id: I4211a3e39f67da727ef7cddbbee6d8c4718dee4a Signed-off-by: Julien Viard de Galbert <jviarddegalbert@online.net> Reviewed-on: https://review.coreboot.org/22307 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Patrick Georgi <pgeorgi@google.com>
Diffstat (limited to 'src/cpu/Makefile.inc')
-rw-r--r--src/cpu/Makefile.inc2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/cpu/Makefile.inc b/src/cpu/Makefile.inc
index f74e354f0ae0..46e541962b7a 100644
--- a/src/cpu/Makefile.inc
+++ b/src/cpu/Makefile.inc
@@ -25,7 +25,7 @@ ifeq ($(CONFIG_CPU_MICROCODE_CBFS_EXTERNAL_HEADER),y)
cbfs-files-y += cpu_microcode_blob.bin
cpu_microcode_blob.bin-file = $(objgenerated)/microcode.bin
-$(objgenerated)/microcode.bin:
+$(objgenerated)/microcode.bin: $(call strip_quotes,$(CONFIG_CPU_MICROCODE_HEADER_FILES))
echo " util/scripts/ucode_h_to_bin.sh $(objgenerated)/microcode.bin \"$(CONFIG_CPU_MICROCODE_HEADER_FILES)\""
util/scripts/ucode_h_to_bin.sh $(objgenerated)/microcode.bin $(CONFIG_CPU_MICROCODE_HEADER_FILES)
endif