diff options
author | Frederic Daniel Luc Lehobey <Frederic@Lehobey.net> | 2008-08-07 23:15:53 +0200 |
---|---|---|
committer | Daniel Baumann <daniel@debian.org> | 2008-08-08 04:42:50 +0200 |
commit | e6eda5f5cd4b071e4ea4d7702f479bce7a3c367e (patch) | |
tree | 95d513ed9845d36a12031b501aefa84719e708b8 /Makefile | |
parent | a5b4c4bc0dcc287875def5c2181ecd5942247d38 (diff) | |
download | vyos-live-build-e6eda5f5cd4b071e4ea4d7702f479bce7a3c367e.tar.gz vyos-live-build-e6eda5f5cd4b071e4ea4d7702f479bce7a3c367e.zip |
Added po4a support for manpages. Use case: 'make po4a'.
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 8 |
1 files changed, 8 insertions, 0 deletions
@@ -111,3 +111,11 @@ clean: distclean: reinstall: uninstall install + +po4a: + # Automatic generation of translated manpages + set -e; if [ $$(which po4a) ]; then \ + cd manpages/ ; po4a po4a/live-helper.cfg; \ + else \ + echo "Please install po4a (http://po4a.alioth.debian.org/)."; \ + fi; |