=== modified file 'Makefile' --- Makefile 2012-06-01 18:39:03 +0000 +++ Makefile 2012-06-06 14:12:50 +0000 @@ -68,13 +68,13 @@ --param make.single.year.ranges 1 \ --param man.output.quietly 1 \ --param man.authors.section.enabled 0 \ - /usr/share/xml/docbook/stylesheet/nwalsh/manpages/docbook.xsl \ + /usr/share/xml/docbook/stylesheet/nwalsh/manpages/docbook.xsl \ $(notdir $<); \ $(MANPOST) $(notdir $@);\ - if locale --all | grep --regexp='^en_US\.utf8$$' && type man \ - 2>/dev/null; then LANG=en_US.UTF-8 MANWIDTH=80 man \ - --warnings --encoding=UTF-8 --local-file $(notdir $@); fi \ - >/dev/null) + if locale --all 2>/dev/null | grep --regexp='^en_US\.utf8$$' \ + && type man 2>/dev/null; then LANG=en_US.UTF-8 MANWIDTH=80 \ + man --warnings --encoding=UTF-8 --local-file $(notdir $@); \ + fi >/dev/null) # DocBook-to-man post-processing to fix a '\n' escape bug MANPOST=$(SED) --in-place --expression='s,\\\\en,\\en,g;s,\\n,\\en,g'