From 54a3f9b3520e8043c2b52f203e3c3f975eb21240 Mon Sep 17 00:00:00 2001 From: John Ellson Date: Thu, 21 Jul 2016 14:33:11 -0400 Subject: [PATCH] fix broken ref to GD_LIBS that broke static builds --- cmd/dot/Makefile.am | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/cmd/dot/Makefile.am b/cmd/dot/Makefile.am index 6a49482eb..3a5d43ffb 100644 --- a/cmd/dot/Makefile.am +++ b/cmd/dot/Makefile.am @@ -102,8 +102,8 @@ dot_builtins_LDADD = \ $(GTS_LIBS) $(EXPAT_LIBS) $(Z_LIBS) $(LIBGEN_LIBS) $(SOCKET_LIBS) $(IPSEPCOLA_LIBS) $(MATH_LIBS) if WITH_LIBGD -dot_static_LDADD += $(top_builddir)/plugin/gd/.libs/libgvplugin_gd_C.a $(GD_LIBS) -dot_builtins_LDADD += $(top_builddir)/plugin/gd/libgvplugin_gd.la $(GD_LIBS) +dot_static_LDADD += $(top_builddir)/plugin/gd/.libs/libgvplugin_gd_C.a $(GDLIB_LIBS) +dot_builtins_LDADD += $(top_builddir)/plugin/gd/libgvplugin_gd.la $(GDLIB_LIBS) endif if WITH_PANGOCAIRO -- 2.40.0