summaryrefslogtreecommitdiff
path: root/autogen.sh
diff options
context:
space:
mode:
authorBruno Haible <bruno@clisp.org>2019-04-02 17:52:20 +0200
committerBruno Haible <bruno@clisp.org>2019-04-02 17:52:20 +0200
commit283418cdf9425f5abc13e9097f1507e26f81d54e (patch)
tree1bd00f023d3466396e468d1ee05c9bb7605bd671 /autogen.sh
parent1ed481e88ff4bd8c9ab5fab9bfee762b62b82ae2 (diff)
downloadgettext-283418cdf9425f5abc13e9097f1507e26f81d54e.tar.gz
build: Build and install libtextstyle.
* autogen.sh: Recurse into libtextstyle directory. * configure.ac: Likewise. * Makefile.am (SUBDIRS): Add libtextstyle. * DEPENDENCIES: Mention that libiconv and ncurses are also used by libtextstyle. * PACKAGING: Recommend to ship libtextstyle as a third binary package. * NEWS: Mention that libtextstyle is installed.
Diffstat (limited to 'autogen.sh')
-rwxr-xr-xautogen.sh8
1 files changed, 7 insertions, 1 deletions
diff --git a/autogen.sh b/autogen.sh
index 4c04f7f32..1642793f5 100755
--- a/autogen.sh
+++ b/autogen.sh
@@ -36,10 +36,11 @@
(unset CDPATH) >/dev/null 2>&1 && unset CDPATH
skip_gnulib=false
+skip_gnulib_option=
while :; do
case "$1" in
- --skip-gnulib) skip_gnulib=true; shift;;
+ --skip-gnulib) skip_gnulib=true; skip_gnulib_option='--skip-gnulib'; shift;;
*) break ;;
esac
done
@@ -412,6 +413,11 @@ aclocal -I m4 -I ../m4 -I gnulib-m4 \
|| exit $?
cd "$dir0"
+echo "$0: generating files in libtextstyle..."
+cd libtextstyle
+./autogen.sh $skip_gnulib_option || exit $?
+cd "$dir0"
+
echo "$0: generating configure in gettext-tools/examples..."
cd gettext-tools/examples
aclocal -I ../../gettext-runtime/m4 -I ../../m4 \