From 2f9a33e7325addeff92b1edff1e9f088bc3ad1fd Mon Sep 17 00:00:00 2001 From: Dirk Zimoch Date: Fri, 26 Apr 2019 15:11:06 +0200 Subject: [PATCH] remove warning on 3.14.8 concerning libraries --- App/tools/driver.makefile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/App/tools/driver.makefile b/App/tools/driver.makefile index b5ec6c7..ffbd3bb 100644 --- a/App/tools/driver.makefile +++ b/App/tools/driver.makefile @@ -634,8 +634,10 @@ LOADABLE_LIBRARY=$(if ${LIBRARY_OBJS},${PRJ},) # Without this Linux library is not build in 3.14.8 if no Makefile exists (but e.g. GNUmakefile). ifeq (${EPICSVERSION},3.14.8) +ifeq ($(wildcard ../Makefile),) LOADABLE_BUILD_LIBRARY = ${LOADABLE_LIBRARY} endif +endif # Handle registry stuff automagically if we have a dbd file. # See ${REGISTRYFILE} and ${EXPORTFILE} rules below.