mirror_lxc/autogen.sh
Daniel Lezcano ba5b258279 rename bootstrap to autogen.sh
By convention the script calling the auto tools is named
autogen.sh. I rename 'bootstrap' to 'autogen.sh' in order to
stick to this convention.

Signed-off-by: Daniel Lezcano <dlezcano@fr.ibm.com>
Reported-by: Michael K Johnson <johnsonm@rpath.com>
2009-04-24 11:32:58 +02:00

13 lines
282 B
Bash

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