mirror_lxc/bootstrap
2009-01-05 12:17:44 +00:00

13 lines
253 B
Bash
Executable File

#!/bin/sh
set -x
test -d autom4te.cache && rm -rf autom4te.cache
ACLOCAL_AMFLAGS="-I m4 -I config $ACLOCAL_AMFLAGS"
libtoolize --force
aclocal $ACLOCAL_AMFLAGS || exit 1
autoheader || exit 1
autoconf || exit 1
automake --add-missing --copy || exit 1