mirror of
https://git.tukaani.org/xz.git
synced 2024-04-04 12:36:23 +02:00
9acc6abea1
Normally, if po4a isn't available, autogen.sh will return with non-zero exit status. The option --no-po4a can be useful when one knows that po4a isn't available but wants autogen.sh to still return with zero exit status.
33 lines
957 B
Bash
Executable file
33 lines
957 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.
|
|
#
|
|
# Pass --no-po4a to this script to skip this step. It can be useful when
|
|
# you know that po4a isn't available and don't want autogen.sh to exit
|
|
# with non-zero exit status.
|
|
if test "x$1" != "x--no-po4a"; then
|
|
cd po4a
|
|
sh update-po
|
|
fi
|
|
|
|
exit 0
|