714017d05fd5c43c04909b45b79023859619e520
hiram
  Mon Jan 13 09:55:40 2025 -0800
eliminate the duplication of the -lm library refs #35048

diff --git src/hg/utils/tdbQuery/makefile src/hg/utils/tdbQuery/makefile
index fe01fc6..732a902 100644
--- src/hg/utils/tdbQuery/makefile
+++ src/hg/utils/tdbQuery/makefile
@@ -1,19 +1,19 @@
 kentSrc = ../../..
 include ../../../inc/common.mk
 
-L += $(MYSQLLIBS) -lm -lz
+L += $(MYSQLLIBS)
 MYLIBDIR = ../../../lib/${MACHTYPE}
 MYLIBS =  ${MYLIBDIR}/jkhgap.a ${MYLIBDIR}/jkweb.a
 
 A = tdbQuery
 O = tdbQuery.o tdbRecord.o
 
 tdbQuery: ${O} ${MYLIBS}
 	${CC} ${COPT} -o ${DESTDIR}${BINDIR}/${A}${EXE} $O ${MYLIBS} $L
 #	${STRIP} ${DESTDIR}${BINDIR}/${A}${EXE}
 
 compile:: ${O}
 	${CC} ${COPT} -o ${A}${EXE} ${O} ${MYLIBS} $L
 
 clean::
 	rm -f ${A} ${O}