From 45a66ec715963048a81391e7f943584edeb3bc8a Mon Sep 17 00:00:00 2001 From: Dirk Zimoch Date: Tue, 8 Mar 2022 09:36:36 +0100 Subject: [PATCH] bugfix in INSTBASE check --- App/tools/driver.makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/App/tools/driver.makefile b/App/tools/driver.makefile index f8b4c1e..535fa83 100644 --- a/App/tools/driver.makefile +++ b/App/tools/driver.makefile @@ -447,7 +447,7 @@ debug:: install build:: # Delete old build if INSTBASE has changed and module depends on other modules. @+for ARCH in ${CROSS_COMPILER_TARGET_ARCHS}; do \ - echo '$(findmnt -t noautofs -n -o SOURCE --target ${EPICS_MODULES})' | cmp -s O.${EPICSVERSION}_$$ARCH/INSTBASE || \ + findmnt -t noautofs -n -o SOURCE --target ${EPICS_MODULES} | cmp -s O.${EPICSVERSION}_$$ARCH/INSTBASE || \ ( grep -qs "^[^#]" O.${EPICSVERSION}_$$ARCH/*.dep && \ (echo "rebuilding $$ARCH"; $(RMDIR) O.${EPICSVERSION}_$$ARCH) ) || true; \ done