[4.1] 1c68d1d Fix build with bmake

Federico G. Schwindt fgsch at lodoss.net
Wed Jun 15 13:41:10 CEST 2016


commit 1c68d1d421ef13d336e72d66cb2bc1378abc26b5
Author: Federico G. Schwindt <fgsch at lodoss.net>
Date:   Tue May 3 16:43:05 2016 +0100

    Fix build with bmake

diff --git a/doc/graphviz/Makefile.am b/doc/graphviz/Makefile.am
index 61c756b..dfbf7ab 100644
--- a/doc/graphviz/Makefile.am
+++ b/doc/graphviz/Makefile.am
@@ -1,5 +1,7 @@
 # Makefile for graphviz outputs
 
+SUFFIXES: .dot .pdf .svg
+
 # for an out-of-tree build, sphinx needs the output in builddir
 # XXX is there a better way to do this?
 
@@ -54,7 +56,7 @@ else
 	@DOT@ -Tpdf -Gsize=$(SIZE) -Grotate=90 $< >$@
 endif
 
-%.pdf: %.dot
+.dot.pdf:
 if ! HAVE_DOT
 	@echo ==================================================
 	@echo You need graphviz installed to generate pdf output
@@ -64,7 +66,7 @@ else
 	@DOT@ -Tpdf -Gsize=$(SIZE) $< >$@
 endif
 
-%.svg: %.dot
+.dot.svg:
 if ! HAVE_DOT
 	@echo ==================================================
 	@echo You need graphviz installed to generate svg output



More information about the varnish-commit mailing list