From 37cd1bf96a9cf764cbfdc4e00314148732c11c50 Mon Sep 17 00:00:00 2001 From: Dirk Zimoch Date: Tue, 10 Aug 2021 14:41:11 +0200 Subject: [PATCH] fix problem in 3.14.12 re-making xxxRecord.h when no Makefile exists --- App/tools/driver.makefile | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/App/tools/driver.makefile b/App/tools/driver.makefile index 0cdb4f0..4fca51e 100644 --- a/App/tools/driver.makefile +++ b/App/tools/driver.makefile @@ -749,7 +749,9 @@ CPPFLAGS += -MMD endif endif endif --include *.d + +# Ignore *.h.d files because EPICS 3.14 adds ../Makefile which may not exist +-include $(filter-out %.h.d,$(wildcard *.d)) # Need to find source dbd files relative to one dir up but generated dbd files in this dir. DBDFILES += ${DBD_SRCS:%=../%}