diff options
author | Roger Leigh <rleigh@debian.org> | 2012-05-15 20:12:16 +0100 |
---|---|---|
committer | Roger Leigh <rleigh@debian.org> | 2012-05-15 20:12:16 +0100 |
commit | abe005ec36fe6c169fe32fb9095ae6de4b7f5808 (patch) | |
tree | 55f375f507a7ac1a737117759f971754844c1843 /man | |
parent | 386885ba107fba4436fc0c9d4dbf9f586ac96c9b (diff) | |
download | schroot-abe005ec36fe6c169fe32fb9095ae6de4b7f5808.tar.gz |
build: groff uses UTF-8 input
Diffstat (limited to 'man')
-rw-r--r-- | man/Makefile.am | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/man/Makefile.am b/man/Makefile.am index f9a222f2..98fc9272 100644 --- a/man/Makefile.am +++ b/man/Makefile.am @@ -29,11 +29,11 @@ TRANSMAN = $(shell for MAN in $(foreach LANG,$(LINGUAS),$(addprefix translated/$ translated/%.man: update-po schroot.ps: $(man_MANS) - tbl $(man_MANS) | groff -T ps -man > $@ + tbl $(man_MANS) | groff -K UTF8 -T ps -man > $@ %.ps: PSMAN=$(addprefix translated/$(patsubst .%,%,$(suffix $(basename %)))/,$(man_MANS)) %.ps: $(TRANSMAN) - tbl $^ | groff -T ps -man > $@ + tbl $^ | groff -K UTF8 -T ps -man > $@ %.pdf: %.ps ps2pdf $< $@ @@ -143,4 +143,4 @@ update-po: dist-hook: update-po -.PHONY: update-po ps pdf
\ No newline at end of file +.PHONY: update-po ps pdf |