From 595b22fcce30f8f96f5acc68294d7570235d346c Mon Sep 17 00:00:00 2001 From: Brenden Matthews Date: Sun, 29 Mar 2009 22:56:29 -0600 Subject: [PATCH] Don't strip control chars from man page. If you're using `less' to view the readme, it should display properly. If we run the man page through `col', it results in weird characters hanging around. --- doc/Makefile.am | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/Makefile.am b/doc/Makefile.am index 6e17e8d6..b50fedd4 100644 --- a/doc/Makefile.am +++ b/doc/Makefile.am @@ -12,7 +12,7 @@ conky.1: command_options.xml config_settings.xml docs.xml variables.xml ${db2x_xsltproc_cmd} -s man ${srcdir}/docs.xml -o docs.mxml ${db2x_manxml_cmd} docs.mxml ${xsltproc_cmd} http://docbook.sourceforge.net/release/xsl/current/html/docbook.xsl ${srcdir}/docs.xml > docs.html - man ./conky.1 | col -b > README + man ./conky.1 > README mv README ${top_srcdir} xsltproc ${srcdir}/variables.xsl ${srcdir}/variables.xml > variables.html xsltproc ${srcdir}/config_settings.xsl ${srcdir}/config_settings.xml > config_settings.html