From: Chris Luke Date: Fri, 9 Sep 2016 21:51:42 +0000 (-0400) Subject: On Ubuntu check for graphviz system config; VPP-396 X-Git-Tag: v16.09~14 X-Git-Url: https://gerrit.fd.io/r/gitweb?a=commitdiff_plain;h=331f1a8eac06f71adec995ba57c1cc5d0c84d883;p=vpp.git On Ubuntu check for graphviz system config; VPP-396 - Sometimes it seems Ubuntu doesn't always set up the Graphviz handler config. If it's missing, generate it. https://bugs.launchpad.net/ubuntu/+source/graphviz/+bug/1349026 Change-Id: I2c1e566817de8415f8b360c6f967cd76307a2a52 Signed-off-by: Chris Luke --- diff --git a/doxygen/Makefile b/doxygen/Makefile index 471b6fd7f15..895bc651696 100644 --- a/doxygen/Makefile +++ b/doxygen/Makefile @@ -87,6 +87,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