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

diff --git src/hg/utils/refSeqGet/makefile src/hg/utils/refSeqGet/makefile
index b33af05..dd9216f 100644
--- src/hg/utils/refSeqGet/makefile
+++ src/hg/utils/refSeqGet/makefile
@@ -1,19 +1,19 @@
 kentSrc = ../../..
 include ../../../inc/common.mk
 
-L += $(MYSQLLIBS) -lm
+L += $(MYSQLLIBS)
 MYLIBDIR = ../../../lib/${MACHTYPE}
 MYLIBS =  $(MYLIBDIR)/jkhgap.a ${MYLIBDIR}/jkweb.a
 
 A = refSeqGet
 O = refSeqVerInfo.o refSeqGet.o
 
 refSeqGet: ${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
 
 test::
 	(cd tests && ${MAKE} test)