You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
lnav/autogen.sh

27 lines
535 B
Bash

15 years ago
#! /bin/sh
if [ -n ${AUTORECONF} ]; then
autoreconf 1>/dev/null 2>/dev/null
if [ $? ]; then
AUTORECONF=autoreconf
fi
fi
if [ -n ${AUTORECONF} ]; 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