mirror of
https://git.proxmox.com/git/mirror_lxc
synced 2025-08-03 00:56:22 +00:00

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>
13 lines
247 B
Bash
Executable File
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
|