From: Michael Prokop Date: Fri, 2 Apr 2010 16:25:27 +0000 (+0200) Subject: Fix wrong usage of redirection in Makefile for doc generation. X-Git-Tag: v0.3.2~1 X-Git-Url: http://git.grml.org/?p=grml-network.git;a=commitdiff_plain;h=84fb6eed93269d1794fe790b8f7c56a057814dc9 Fix wrong usage of redirection in Makefile for doc generation. --- diff --git a/debian/changelog b/debian/changelog index 96d544d..9b46ef7 100644 --- a/debian/changelog +++ b/debian/changelog @@ -4,8 +4,9 @@ grml-network (0.3.2) unstable; urgency=low netcardconfig (iwl3945 doesn't have an entry in /proc/net/wireless with kernel 2.6.33 for example). * Bump Standards-Version to 3.8.4 (no further changes). + * Fix wrong usage of redirection in Makefile for doc generation. - -- Michael Prokop Fri, 02 Apr 2010 18:16:23 +0200 + -- Michael Prokop Fri, 02 Apr 2010 18:24:55 +0200 grml-network (0.3.1) unstable; urgency=low diff --git a/docs/Makefile b/docs/Makefile index fe3b24a..e89b71c 100644 --- a/docs/Makefile +++ b/docs/Makefile @@ -17,7 +17,7 @@ man1 = $(usr)/share/man/man1/ %.gz : %.txt ; asciidoc -d manpage -b docbook $^ #sed -i 's///g' `echo $^ |sed -e 's/.txt/.xml/'` - xsltproc -nonet /usr/share/xml/docbook/stylesheet/nwalsh/manpages/docbook.xsl `echo $^ |sed -e 's/.txt/.xml/'` &>/dev/null + xsltproc -nonet /usr/share/xml/docbook/stylesheet/nwalsh/manpages/docbook.xsl `echo $^ |sed -e 's/.txt/.xml/'` # ugly hack to avoid '.sp' at the end of a sentence or paragraph: sed -i 's/\.sp//' `echo $^ | sed -e 's/.txt//'` gzip -f --best `echo $^ |sed -e 's/.txt//'`