From: Michal Privoznik Date: Mon, 22 Jun 2015 15:17:38 +0000 (+0200) Subject: docs: Properly mark acl.html dependencies X-Git-Tag: v1.2.17-rc1~64 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=1310b1358cdf9c8acba6e0e85feb869241e59faa;p=thirdparty%2Flibvirt.git docs: Properly mark acl.html dependencies The acl.html file includes aclperms.htmlinc which is generated. However, acl.html is generated too from acl.html.tmp. And in fact, this is the place where the aclperms file is needed. Fix the dependency in Makefile. Signed-off-by: Michal Privoznik --- diff --git a/docs/Makefile.am b/docs/Makefile.am index b7b49cbed7..13dddf84b9 100644 --- a/docs/Makefile.am +++ b/docs/Makefile.am @@ -163,7 +163,7 @@ EXTRA_DIST= \ sitemap.html.in aclperms.htmlinc \ todo.pl hvsupport.pl todo.cfg-example -acl.html:: $(srcdir)/aclperms.htmlinc +acl.html.tmp: $(srcdir)/aclperms.htmlinc $(srcdir)/aclperms.htmlinc: $(top_srcdir)/src/access/viraccessperm.h \ $(srcdir)/genaclperms.pl Makefile.am