From: Daniel P. Berrange Date: Fri, 2 Oct 2009 11:01:10 +0000 (+0100) Subject: Fix typo in Makefile.am breaking NEWS file generation X-Git-Tag: v0.7.2~61 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=ea6bc1e8c64388001243ceae64c8d9f9899ea690;p=thirdparty%2Flibvirt.git Fix typo in Makefile.am breaking NEWS file generation * docs/Makefile.am: Fix syntax error in NEWS rule, '$' should be '$$' to escape correctly --- diff --git a/docs/Makefile.am b/docs/Makefile.am index 354e14e0d3..5b049514ed 100644 --- a/docs/Makefile.am +++ b/docs/Makefile.am @@ -112,7 +112,7 @@ $(top_builddir)/NEWS: $(top_srcdir)/docs/news.xsl $(top_srcdir)/docs/news.html.i $(XSLTPROC) --nonet $(top_srcdir)/docs/news.xsl \ $(top_srcdir)/docs/news.html.in \ | perl -0777 -pe 's/\n\n+$$/\n/' \ - | perl -pe 's/[ \t]+$//' \ + | perl -pe 's/[ \t]+$$//' \ > $@-t && mv $@-t $@ ; fi ); clean-local: