From a93159afd73128c8123d16cd494b1ada92812c17 Mon Sep 17 00:00:00 2001 From: Jesse Vincent Date: Thu, 19 Nov 2020 10:48:18 -0800 Subject: [PATCH] We don't need to tell arduino to check the current directory for includes. It does that by default --- testing/makefiles/testcase.mk | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/testing/makefiles/testcase.mk b/testing/makefiles/testcase.mk index 95f387c2..67f5158d 100644 --- a/testing/makefiles/testcase.mk +++ b/testing/makefiles/testcase.mk @@ -53,7 +53,7 @@ ${BIN_DIR}/${BIN_FILE}: ${TEST_OBJS} # We force sketch recompiliation because otherwise, make won't pick up changes to...anything on the arduino side compile-sketch: ${TEST_OBJS} @install -d "${BIN_DIR}" "${LIB_DIR}" - env LIBONLY=yes VERBOSE=${VERBOSE} LOCAL_CFLAGS="'-I$(shell pwd)'" \ + env LIBONLY=yes VERBOSE=${VERBOSE} \ OUTPUT_PATH="${LIB_DIR}" \ $(MAKE) -f ${top_dir}/testing/makefiles/delegate.mk compile $(COMPILER_WRAPPER) $(call _arduino_prop,compiler.cpp.cmd) -o "${BIN_DIR}/${BIN_FILE}" \