diff options
author | Chris Luke <chrisy@flirble.org> | 2016-09-09 17:51:42 -0400 |
---|---|---|
committer | Chris Luke <chrisy@flirble.org> | 2016-09-09 17:51:42 -0400 |
commit | c87fa6dede65ab180d8f5cc396d9039882d0baad (patch) | |
tree | 834300660d3f8299ae6c8aa0020984dbb59a4b7a | |
parent | 24648ad088c4feea39f8e9fda82c35d207af45e0 (diff) |
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 <chrisy@flirble.org>
-rw-r--r-- | doxygen/Makefile | 3 |
1 files changed, 3 insertions, 0 deletions
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 |