3844728d1f5262afe91c7dfdd7187cb46f8fa568
hiram
  Mon Jan 13 14:05:12 2025 -0800
eliminate the duplication of the -lm library refs #35048

diff --git src/hg/utils/hubCheck/makefile src/hg/utils/hubCheck/makefile
index ccbbecf..89f8a57 100644
--- src/hg/utils/hubCheck/makefile
+++ src/hg/utils/hubCheck/makefile
@@ -1,19 +1,19 @@
 kentSrc = ../../..
 include ../../../inc/common.mk
 
-L += ${HALLIBS} ${MYSQLLIBS} -lm
+L += ${HALLIBS} ${MYSQLLIBS}
 MYLIBDIR = ../../../lib/${MACHTYPE}
 MYLIBS =  ${MYLIBDIR}/jkhgap.a ${MYLIBDIR}/jkweb.a
 
 A = hubCheck
 O = hubCheck.o
 
 hubCheck: ${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
 
 cgi:: compile
 	chmod a+rx $A${EXE}