From: Ján Tomko Date: Thu, 28 Jul 2016 08:04:11 +0000 (+0200) Subject: docs/Makefile.am: build hvsupport.html earlier X-Git-Url: http://xenbits.xensource.com/gitweb?a=commitdiff_plain;h=472ab04d4a5badf1b7c76c40d28157515ea073db;p=libvirt.git docs/Makefile.am: build hvsupport.html earlier This file requires three steps instead of two. Move it earlier in the list of targets to avoid waiting for it. --- diff --git a/docs/Makefile.am b/docs/Makefile.am index 04dca62483..fabae03065 100644 --- a/docs/Makefile.am +++ b/docs/Makefile.am @@ -96,9 +96,11 @@ internals_html = $(internals_html_in:%.html.in=%.html) # For all other files, since we ship pre-built html in the # tarball, we must also ship the sources, even when those # sources are themselves generated. -dot_html_in = $(notdir $(wildcard $(srcdir)/*.html.in)) \ +# Generate hvsupport.html first, since it takes one extra step. +dot_html_in = \ + hvsupport.html.in \ todo.html.in \ - hvsupport.html.in + $(notdir $(wildcard $(srcdir)/*.html.in)) dot_html = $(dot_html_in:%.html.in=%.html) dot_php_in = $(notdir $(wildcard $(srcdir)/*.php.in))