From ea6bc1e8c64388001243ceae64c8d9f9899ea690 Mon Sep 17 00:00:00 2001 From: "Daniel P. Berrange" Date: Fri, 2 Oct 2009 12:01:10 +0100 Subject: [PATCH] Fix typo in Makefile.am breaking NEWS file generation * docs/Makefile.am: Fix syntax error in NEWS rule, '$' should be '$$' to escape correctly --- docs/Makefile.am | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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: