b08c92a020528ee45601b53582dbcaf70d41b03d galt Tue Oct 19 00:43:02 2021 -0700 error in makefile was including HALLIBS twice diff --git src/hg/hgHubConnect/makefile src/hg/hgHubConnect/makefile index fbd0d74..e2611ff 100644 --- src/hg/hgHubConnect/makefile +++ src/hg/hgHubConnect/makefile @@ -1,17 +1,17 @@ kentSrc = ../.. include ../../inc/common.mk -L += -lm ${MYSQLLIBS} ${HALLIBS} +L += -lm ${MYSQLLIBS} MYLIBDIR = ../../lib/${MACHTYPE} MYLIBS = ${MYLIBDIR}/jkhgap.a $(MYLIBDIR)/jkweb.a A = hgHubConnect O = $A.o include ../../inc/cgi_build_rules.mk compile: $O ${CC} -o $A${EXE} -g $O ${MYLIBS} ${L}