From 876460c54d8d146d68b6a8d1bf1fe62110c36802 Mon Sep 17 00:00:00 2001 From: Dirk Zimoch Date: Wed, 21 Oct 2015 14:37:33 +0200 Subject: [PATCH] avoid bash syntax --- 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 0311a0e..ffeac2b 100644 --- a/App/tools/driver.makefile +++ b/App/tools/driver.makefile @@ -392,7 +392,7 @@ $(foreach a,${CROSS_COMPILER_TARGET_ARCHS},$(foreach l,$(LINK_$a),$(eval $(call install build:: # Delete old build if INSTBASE has changed and module depends on other modules. @for ARCH in ${CROSS_COMPILER_TARGET_ARCHS}; do \ - cmp -s O.${EPICSVERSION}_$$ARCH/INSTBASE <<< '$(realpath ${EPICS_MODULES})' || \ + echo '$(realpath ${EPICS_MODULES})' | cmp -s O.${EPICSVERSION}_$$ARCH/INSTBASE || \ ( grep -qs "^[^#]" O.${EPICSVERSION}_$$ARCH/*.dep && \ (echo "rebuilding $$ARCH"; $(RMDIR) O.${EPICSVERSION}_$$ARCH) ) || true; \ done