From cc0cc512c07179bb28f856f2a43ca0dc90a43f10 Mon Sep 17 00:00:00 2001 From: Tim Edwards Date: Mon, 17 Feb 2020 14:04:40 -0500 Subject: [PATCH] Modified the Makefile per the patch from Charlene at OpenBSD to add GR_LIBS to the list of options to CC, as this apparently prevents problems with older binutils, and should not affect builds otherwise. --- tcltk/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tcltk/Makefile b/tcltk/Makefile index 56beeed..e74b1b5 100644 --- a/tcltk/Makefile +++ b/tcltk/Makefile @@ -25,7 +25,7 @@ install-tcl: netgenexec${EXEEXT} $(DESTDIR)${INSTALL_BINDIR}/netgen.sh ${TCL_FIL netgenexec${EXEEXT}: netgenexec.c ${CC} ${CFLAGS} ${CPPFLAGS} ${DFLAGS_NOSTUB} netgenexec.c \ -o netgenexec${EXEEXT} \ - ${LDFLAGS} ${LIBS} ${LIB_SPECS_NOSTUB} + ${LIB_SPECS_NOSTUB} ${LDFLAGS} ${LIBS} ${GR_LIBS} netgen.tcl: netgen.tcl.in sed -e 's%TCL_DIR%${TCLDIR}%g' \