autogen.sh: add option to skip autotools invocations

This is to comply with Gentoo packaging policy: it is preferred that
Portage-provided procedures handle autotools invcations.
This commit is contained in:
Andrey Utkin 2016-03-14 02:22:56 +02:00
parent ab7939f614
commit 6ae1df7601
1 changed files with 4 additions and 0 deletions

View File

@ -31,6 +31,10 @@
mkdir -p config mkdir -p config
if [ "$NO_AUTOTOOLS_RUN" ]; then
exit 0
fi
intltoolize --force --automake \ intltoolize --force --automake \
&& aclocal -I ./m4 \ && aclocal -I ./m4 \
&& $LIBTOOLIZE --copy --force --automake \ && $LIBTOOLIZE --copy --force --automake \