From: Frank Terbeck Date: Wed, 9 Sep 2009 19:32:47 +0000 (+0200) Subject: doc/Makefile: fix non posix shell syntax X-Git-Tag: v0.8.28~3 X-Git-Url: https://git.grml.org/?p=grml-autoconfig.git;a=commitdiff_plain;h=1166510144cf164d1b671f6b24ac5cf37b0444fa doc/Makefile: fix non posix shell syntax --- diff --git a/doc/Makefile b/doc/Makefile index 30f5e3b..3075fcb 100644 --- a/doc/Makefile +++ b/doc/Makefile @@ -4,7 +4,7 @@ %.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/'` > /dev/null 2>&1 # 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//'`