summaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorJean THOMAS <virgule@jeanthomas.me>2023-06-15 22:53:51 +0200
committerAnastasia Klimchuk <aklm@chromium.org>2023-06-19 11:21:33 +0000
commit885f7923265e4e48f4bfc109f3723bb9167b75bc (patch)
treef48f1e09f7735f15b84b53e4ec324871b8f90a8a /Makefile
parent17d1dc5f0cbd4309aeeeb3e7a2a4a83c5aa25080 (diff)
downloadflashrom-885f7923265e4e48f4bfc109f3723bb9167b75bc.tar.gz
flashrom-885f7923265e4e48f4bfc109f3723bb9167b75bc.tar.bz2
flashrom-885f7923265e4e48f4bfc109f3723bb9167b75bc.zip
Makefile: Fix DirtyJTAG build
Fix typo where "FEATURE_FLAGS" is spelled "FEATURE_CFLAGS", preventing the DirtyJTAG driver from being used. Signed-off-by: Jean THOMAS <virgule@jeanthomas.me> Change-Id: I4b6bce24f34848d11731f4bc118a3052fb24e639 Reviewed-on: https://review.coreboot.org/c/flashrom/+/75891 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Peter Marheine <pmarheine@chromium.org> Reviewed-by: Anastasia Klimchuk <aklm@chromium.org>
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index da5203e36..5827cab1f 100644
--- a/Makefile
+++ b/Makefile
@@ -828,7 +828,7 @@ ACTIVE_PROGRAMMERS += digilent_spi
endif
ifeq ($(CONFIG_DIRTYJTAG_SPI), yes)
-FEATURE_CFLAGS += -D'CONFIG_DIRTYJTAG_SPI=1'
+FEATURE_FLAGS += -D'CONFIG_DIRTYJTAG_SPI=1'
PROGRAMMER_OBJS += dirtyjtag_spi.o
ACTIVE_PROGRAMMERS += dirtyjtag_spi
endif