From: Chris Luke Date: Fri, 9 Sep 2016 21:51:42 +0000 (-0400) Subject: On Ubuntu check for graphviz system config X-Git-Tag: v17.01-rc0~230 X-Git-Url: https://gerrit.fd.io/r/gitweb?a=commitdiff_plain;h=refs%2Fchanges%2F85%2F2785%2F1;p=vpp.git On Ubuntu check for graphviz system config - Sometimes it seems Ubuntu doesn't always set up the Graphviz handler config. If it's missing, generate it. Change-Id: I2c1e566817de8415f8b360c6f967cd76307a2a52 Signed-off-by: Chris Luke --- diff --git a/doxygen/Makefile b/doxygen/Makefile index b75c9c6bdb3..ef52c493020 100644 --- a/doxygen/Makefile +++ b/doxygen/Makefile @@ -113,6 +113,9 @@ ifeq ($(OS_ID),ubuntu) dpkg-query --show $$i >/dev/null 2>&1 || inst="$$inst $$i"; \ done; \ if [ "$$inst" ]; then sudo apt-get $(CONFIRM) $(FORCE) install $$inst; fi + @if [ ! -f /usr/lib/graphviz/config6a ]; then \ + sudo dot -c; \ + fi else ifneq ("$(wildcard /etc/redhat-release)","") @sudo yum install $(CONFIRM) $(DOC_RPM_DEPENDS) else