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

22 lines
488 B
Bash

15 years ago
#! /bin/sh
AUTORECONF=${AUTORECONF:-$(which autoreconf)}
if [ -n ${AUTORECONF} ]; then
${AUTORECONF} -vfi -I m4
else
AUTOCONF=${AUTOCONF:-$(which autoconf)}
AUTOMAKE=${AUTOMAKE:-$(which automake)}
AUTOHEADER=${AUTOHEADER:-$(which autoheader)}
ACLOCAL=${ACLOCAL:-$(which aclocal)}
${AUTOCONF} --version
${AUTOMAKE} --version
${ACLOCAL} -I m4 -I .
${AUTOHEADER} -I .
${AUTOMAKE} --add-missing --copy --force-missing --foreign
${AUTOCONF}
fi