mirror of
https://github.com/tstack/lnav
synced 2024-11-01 21:40:34 +00:00
27 lines
560 B
Bash
Executable File
27 lines
560 B
Bash
Executable File
#! /bin/sh
|
|
|
|
|
|
if test x"${AUTORECONF}" = x""; then
|
|
autoreconf -V 1>/dev/null 2>/dev/null
|
|
if test $? -eq 0; then
|
|
AUTORECONF=autoreconf
|
|
fi
|
|
fi
|
|
|
|
if test x"${AUTORECONF}" != x""; then
|
|
${AUTORECONF} -vfi -I m4
|
|
else
|
|
AUTOCONF=${AUTOCONF:-autoconf}
|
|
AUTOMAKE=${AUTOMAKE:-automake}
|
|
AUTOHEADER=${AUTOHEADER:-autoheader}
|
|
ACLOCAL=${ACLOCAL:-aclocal}
|
|
|
|
${AUTOCONF} --version
|
|
${AUTOMAKE} --version
|
|
|
|
${ACLOCAL} -I m4 -I .
|
|
${AUTOHEADER} -I .
|
|
${AUTOMAKE} --add-missing --copy --force-missing --foreign
|
|
${AUTOCONF}
|
|
fi
|