mirror of
https://git.proxmox.com/git/mirror_lxc
synced 2026-03-29 03:37:38 +00:00
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>
13 lines
282 B
Bash
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
|