Don't strip control chars from man page.
authorBrenden Matthews <brenden@rty.ca>
Mon, 30 Mar 2009 04:56:29 +0000 (22:56 -0600)
committerBrenden Matthews <brenden@rty.ca>
Mon, 30 Mar 2009 04:56:29 +0000 (22:56 -0600)
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

index 6e17e8d..b50fedd 100644 (file)
@@ -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