23492f5ba1daa5245326bb308db5dc51a711d1a3
hiram
  Sat Jan 25 08:54:35 2025 -0800
fixup for new source file organization no redmine

diff --git src/userApps/Makefile src/userApps/Makefile
index d7d6c410d27..9fa39d0ebe6 100644
--- src/userApps/Makefile
+++ src/userApps/Makefile
@@ -18,30 +18,31 @@
 	cd kent/src && ${MAKE} userApps
 	cd kent/src/parasol && ${MAKE}
 	./kent/src/utils/userApps/mkREADME.sh ${DESTDIR}/${BINDIR} ${CURDIR}/kentUtils.Documentation.txt
 
 clean:
 	test ! -d kent/src || (cd kent/src && ${MAKE} -i -k clean)
 	rm -f part1Src.zip part2Src.zip part3Src.zip part4Src.zip part5Src.zip
 	rm -f userApps.zip
 
 fetchSource:
 	./fetchKentSource.sh
 	@printf "size of fetched kent source tree: "
 	@du -hs kent
 	@printf "number of files in kent source tree: "
 	@find ./kent -type f | wc -l
+	@grep CGI_VERSION ./kent/src/hg/inc/versionInfo.h
 
 # this installEnvironment will add all the shell environment variables
 # to the kent/src/inc/localEnvironment.mk file which is included
 # from the kent/src/inc/userApps.mk to allow any 'make' to function
 # properly when inside this extracted source tree.
 
 installEnvironment:
 	@test -d kent/src/inc || (echo "ERROR: source has not been fetched yet, try 'make fetchSource' first."; exit 255)
 	@printf "export DESTDIR = ${DESTDIR}\n\
 export BINDIR = ${BINDIR}\n\
 export MACHTYPE = ${MACHTYPE}\n\
 export CGI_BIN = ${CGI_BIN}\n\
 export DOCUMENTROOT = ${DOCUMENTROOT}\n\
 export SCRIPTS = ${SCRIPTS}\n\
 export NOSQLTEST = 1\n" > kent/src/inc/localEnvironment.mk