fef8ba0be8818869f8db954c0e59d7ba63f3dd6e
hiram
  Mon May 7 11:05:27 2018 -0700
better rsync command to avoid warning message about the /cluster/bin/x86_64 directory not changing with requested refs #21332

diff --git src/parasol/makefile src/parasol/makefile
index a871060..06b0602 100644
--- src/parasol/makefile
+++ src/parasol/makefile
@@ -15,25 +15,25 @@
 all: $(USE_DIRS:%=%.all)
 
 lib.all:
 	mkdir -p bin
 	cd lib && $(MAKE)
 
 # make sure lib is built first, even in a parallel make
 
 %.all: lib.all
 	cd $* && echo $* && $(MAKE)
 
 install:
 	@echo 'parasol install, please copy ./bin/*  where desired ...'
 
 userApps: all
-	rsync -a ./bin/ ${DESTDIR}/${BINDIR}/
+	rsync -a ./bin/* ${DESTDIR}/${BINDIR}/
 
 clean:
 	rm -f */*.o lib/*/*.a
 	rm -f bin/*
 
 broad:
 	cd lib && ${MAKE}
 	cd broadNode && ${MAKE}
 	cd broadHub && ${MAKE}