6a64112e35285dd6bc89131787bfa3e84d57ddc9
hiram
  Fri May 24 12:15:43 2013 -0700
updating userApps buildlist refs #9149
diff --git src/hg/utils/makefile src/hg/utils/makefile
index 097c9d2..08c5c8f 100644
--- src/hg/utils/makefile
+++ src/hg/utils/makefile
@@ -47,35 +47,35 @@
 
 TEST_DIRS = \
 	gff3ToGenePred \
 	gff3ToPsl \
 	gtfToGenePred \
 	overlapSelect \
 	pslMap \
 	refSeqGet
 
 APPS = $(DIRS) $(UTILS_APPLIST)
 
 all:: utils
 
 utils: $(APPS:%=%.utils)
 %.utils:
-	(cd $* && $(MAKE))
+	cd $* && echo $* && $(MAKE)
 
 userApps: $(UTILS_APPLIST:%=%.userApp)
 %.userApp:
-	( cd $* && echo $* && $(MAKE) )
+	cd $* && echo $* && $(MAKE)
 
 scripts: $(SCRIPT_FILES:%=%.scripts)
 %.scripts:
 	chmod +x $*
 	rm -f ${SCRIPTS}/$*
 	cp -p $* ${SCRIPTS}/$*
 
 alpha: scripts all
 
 test::	${TEST_DIRS:%=%.test}
 %.test:
 	(cd $* && ${MAKE} test)
 
 clean:: $(APPS:%=%.clean)
 	- find . -name '*.o' -exec rm {} \;