be4311c07e14feb728abc6425ee606ffaa611a58
markd
  Fri Jan 22 06:46:58 2021 -0800
merge with master

diff --git src/hg/utils/otto/decipher/makefile src/hg/utils/otto/decipher/makefile
index 72622af..1fe3652 100644
--- src/hg/utils/otto/decipher/makefile
+++ src/hg/utils/otto/decipher/makefile
@@ -1,25 +1,25 @@
 SUBDIRS = 
 
 all: ${SUBDIRS:%=%.suball}
 
 %.suball:
 	${MAKE} -C $* all
 
 FILES = decipher.tables buildDecipher validateDecipher.sh checkDecipher.sh decipherWrapper.sh login.perl ../../../lib/decipherRaw.sql ../../../lib/decipherSnvsRaw.sql processDecipher.py
 
 install: make-prefix installSub ${PREFIX}
 	cp ${FILES} ${PREFIX}
 
 installSub: ${SUBDIRS:%=%.install}
 
 %.install:
 	${MAKE} -C $* install
 
 validate: check-prefix
-	for i in ${FILES} ;do diff \$i ${PREFIX}/\$i; done
+	$(foreach i, $(FILES), echo $(i); diff ${PREFIX}/$(i) $(i);)
 
 make-prefix: check-prefix
 	mkdir -p ${PREFIX}
 
 check-prefix:
 	@test -n "${PREFIX}" || (echo "must specify PREFIX= to install"; exit 1)