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:
parent
ab7939f614
commit
6ae1df7601
|
@ -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 \
|
||||||
|
|
Loading…
Reference in New Issue