b08c92a020528ee45601b53582dbcaf70d41b03d
galt
  Tue Oct 19 00:43:02 2021 -0700
error in makefile was including HALLIBS twice

diff --git src/hg/hgTrackUi/makefile src/hg/hgTrackUi/makefile
index 0ae2b11..12d05a9 100644
--- src/hg/hgTrackUi/makefile
+++ src/hg/hgTrackUi/makefile
@@ -1,16 +1,16 @@
 kentSrc = ../..
 include ../../inc/common.mk
 
-L += ${HALLIBS} ${MYSQLLIBS} -lm
+L += ${MYSQLLIBS} -lm
 MYLIBDIR = ../../lib/${MACHTYPE}
 MYLIBS =  ${MYLIBDIR}/jkhgapcgi.a ${MYLIBDIR}/jkhgap.a ${MYLIBDIR}/jkweb.a
 
 A = hgTrackUi
 
 O = $A.o cgapSageUi.o encodePeakUi.o
 
 include ../../inc/cgi_build_rules.mk
 
 compile: $O 
 	${CC} $O ${MYLIBS} ${L} 
 	mv ${AOUT} $A${EXE}