From a2f9bd5b8033fcf13ff9cd0d42e8a36f961a3662 Mon Sep 17 00:00:00 2001 From: Eric Blake Date: Thu, 2 Jun 2011 08:17:25 -0600 Subject: [PATCH] build: fix VPATH build break from previous patch Partial revert of commit c3c30d4de9d. * docs/Makefile.am (internals/%.html.tmp): Restore MKDIR_P; it is needed for intermediate file after all. Reported by Daniel P. Berrange. --- docs/Makefile.am | 1 + 1 file changed, 1 insertion(+) diff --git a/docs/Makefile.am b/docs/Makefile.am index a98ced016d..689fe32f40 100644 --- a/docs/Makefile.am +++ b/docs/Makefile.am @@ -127,6 +127,7 @@ hvsupport.html.in: $(srcdir)/hvsupport.pl $(srcdir)/../src/libvirt_public.syms \ internals/%.html.tmp: internals/%.html.in subsite.xsl page.xsl sitemap.html.in @if [ -x $(XSLTPROC) ] ; then \ echo "Generating $@"; \ + $(MKDIR_P) internals; \ name=`echo $@ | sed -e 's/.tmp//'`; \ $(XSLTPROC) --stringparam pagename $$name --nonet --html \ $(top_srcdir)/docs/subsite.xsl $< > $@ \ -- GitLab