From: Eric Blake Date: Thu, 2 Jun 2011 14:17:25 +0000 (-0600) Subject: build: fix VPATH build break from previous patch X-Git-Tag: v0.9.2~35 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=a2f9bd5b8033fcf13ff9cd0d42e8a36f961a3662;p=thirdparty%2Flibvirt.git 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. --- 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 $< > $@ \