From 855c935d3271806c7f4496db3cd82191205876ac Mon Sep 17 00:00:00 2001 From: Michael Fero Date: Fri, 24 Apr 2020 16:16:07 +0000 Subject: [PATCH] Remove libmbedtls file from libbedrock mbedtls/programs/test/cpp_dummy_build.cpp was being added to libbedrock by accidental inclusion via `find` --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 703fd7888..8b3e09f56 100644 --- a/Makefile +++ b/Makefile @@ -67,7 +67,7 @@ STUFFC = $(shell find libstuff -name '*.c') STUFFOBJ = $(STUFFCPP:%.cpp=$(INTERMEDIATEDIR)/%.o) $(STUFFC:%.c=$(INTERMEDIATEDIR)/%.o) STUFFDEP = $(STUFFCPP:%.cpp=$(INTERMEDIATEDIR)/%.d) -LIBBEDROCKCPP = $(shell find * -name '*.cpp' -not -name main.cpp -not -path 'test*' -not -path 'libstuff*') +LIBBEDROCKCPP = $(shell find * -name '*.cpp' -not -name main.cpp -not -path 'test*' -not -path 'libstuff*' -not -path 'mbedtls*') LIBBEDROCKOBJ = $(LIBBEDROCKCPP:%.cpp=$(INTERMEDIATEDIR)/%.o) LIBBEDROCKDEP = $(LIBBEDROCKCPP:%.cpp=$(INTERMEDIATEDIR)/%.d)