From: Matthew Fernandez Date: Sun, 14 Jun 2020 14:53:32 +0000 (-0700) Subject: remove unused include reference to lib/graph X-Git-Tag: 2.44.1~4^2~7 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=50c2ad85279f20cb49a9efcffc67bb0f1f20d31b;p=graphviz remove unused include reference to lib/graph The only possible lib/graph header imported by any of the tools is agxbuf.h, but this is shadowed by the same named header in lib/cgraph. Having lib/graph in the list of include directories here was a little dangerous as reordering would have caused the tools to pick up lib/graph's copy. Furthermore as we are not currently building lib/graph, this likely would have caused link failures. Related to #1549. --- diff --git a/cmd/tools/Makefile.am b/cmd/tools/Makefile.am index c41b6b617..12885ecd2 100644 --- a/cmd/tools/Makefile.am +++ b/cmd/tools/Makefile.am @@ -4,7 +4,6 @@ AM_CPPFLAGS = \ -I$(top_srcdir) \ -I$(top_srcdir)/lib/cgraph \ - -I$(top_srcdir)/lib/graph \ -I$(top_srcdir)/lib/cdt \ -I$(top_srcdir)/lib/pathplan \ -I$(top_srcdir)/lib/pack \