mirror of https://git.tukaani.org/xz.git
Allow to explicitly specify autotool versions in autogen.sh.
This commit is contained in:
parent
eaf8367368
commit
d45615c555
12
autogen.sh
12
autogen.sh
|
@ -11,9 +11,9 @@
|
||||||
|
|
||||||
set -e -x
|
set -e -x
|
||||||
|
|
||||||
autopoint -f
|
${AUTOPOINT:-autopoint} -f
|
||||||
libtoolize -c -f || glibtoolize -c -f
|
${LIBTOOLIZE:-libtoolize} -c -f || glibtoolize -c -f
|
||||||
aclocal -I m4
|
${ACLOCAL:-aclocal} -I m4
|
||||||
autoconf
|
${AUTOCONF:-autoconf}
|
||||||
autoheader
|
${AUTOHEADER:-autoheader}
|
||||||
automake -acf --foreign
|
${AUTOMAKE:-automake} -acf --foreign
|
||||||
|
|
Loading…
Reference in New Issue