mirror of
https://git.tukaani.org/xz.git
synced 2024-04-04 12:36:23 +02:00
6f7211b6bb
The dependency on po4a is optional. It's never required to install the translated man pages when xz is built from a release tarball. If po4a is missing when building from xz.git, the translated man pages won't be generated but otherwise the build will work normally. The translations are only updated automatically by autogen.sh and by "make mydist". This makes it easy to keep po4a as an optional dependency and ensures that I won't forget to put updated translations to a release tarball. The translated man pages aren't installed if --disable-nls is used. The installation of translated man pages abuses Automake internals by calling "install-man" with redefined dist_man_MANS and man_MANS. This makes the hairy script code slightly less hairy. If it breaks some day, this code needs to be fixed; don't blame Automake developers. Also, this adds more quotes to the existing shell script code in the Makefile.am "-hook"s.
24 lines
736 B
Bash
Executable file
24 lines
736 B
Bash
Executable file
#!/bin/sh
|
|
|
|
###############################################################################
|
|
#
|
|
# Author: Lasse Collin
|
|
#
|
|
# This file has been put into the public domain.
|
|
# You can do whatever you want with this file.
|
|
#
|
|
###############################################################################
|
|
|
|
set -e -x
|
|
|
|
# The following six lines are almost identical to "autoreconf -fi" but faster.
|
|
${AUTOPOINT:-autopoint} -f
|
|
${LIBTOOLIZE:-libtoolize} -c -f || glibtoolize -c -f
|
|
${ACLOCAL:-aclocal} -I m4
|
|
${AUTOCONF:-autoconf}
|
|
${AUTOHEADER:-autoheader}
|
|
${AUTOMAKE:-automake} -acf --foreign
|
|
|
|
# Generate the translated man pages if the "po4a" tool is available.
|
|
# This is *NOT* done by "autoreconf -fi" or when "make" is run.
|
|
cd po4a && sh update-po
|