From 1fdffbbbab1bbe4c325792fa7370f7708543904e Mon Sep 17 00:00:00 2001 From: morris Date: Fri, 6 Nov 2020 17:19:51 +0800 Subject: [PATCH] test: fix several test build error * Original commit: espressif/esp-idf@b7ecccd9010f1deaba83de54374231c3c7f5b472 --- components/mdns/test_afl_fuzz_host/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/mdns/test_afl_fuzz_host/Makefile b/components/mdns/test_afl_fuzz_host/Makefile index 4d2afd614..96bfc991e 100644 --- a/components/mdns/test_afl_fuzz_host/Makefile +++ b/components/mdns/test_afl_fuzz_host/Makefile @@ -67,7 +67,7 @@ all: $(TEST_NAME) mdns.o: ../mdns.c @echo "[CC] $<" - @$(CC) $(CFLAGS) --include mdns_mock.h $(MDNS_C_DEPENDENCY_INJECTION) -c $< -o $@ + @$(CC) $(CFLAGS) -include mdns_mock.h $(MDNS_C_DEPENDENCY_INJECTION) -c $< -o $@ $(TEST_NAME): $(OBJECTS) @echo "[LD] $@"