diff options
author | Frederic Daniel Luc Lehobey <Frederic@Lehobey.net> | 2008-08-07 23:15:53 +0200 |
---|---|---|
committer | Daniel Baumann <daniel@debian.org> | 2011-03-09 19:03:37 +0100 |
commit | 45bc246fbb58dca5f64dbb83bebb3dd636a55bfd (patch) | |
tree | 833e8501066fb9cd936a75665812dd2d2de31d2a /Makefile | |
parent | bb56b10384649bb97bbc42722115fa586a9b67a8 (diff) | |
download | vyos-live-build-45bc246fbb58dca5f64dbb83bebb3dd636a55bfd.tar.gz vyos-live-build-45bc246fbb58dca5f64dbb83bebb3dd636a55bfd.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; |