mirror_lxc/bootstrap
dlezcano d3e00ade76 Remove files provided by libtool and automake
From: Daniel Lezcano <dlezcano@fr.ibm.com>

Remove the files which are provided by libtool and automake.
libtoolize has been added to 'bootstrap' command.

Signed-off-by: Daniel Lezcano <dlezcano@fr.ibm.com>
2009-01-05 12:08:14 +00:00

13 lines
247 B
Bash
Executable File

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