mirror of
https://git.proxmox.com/git/mirror_lxc
synced 2025-06-13 16:08:21 +00:00
12 lines
228 B
Bash
Executable File
12 lines
228 B
Bash
Executable File
#!/bin/sh
|
|
|
|
set -x
|
|
|
|
test -d autom4te.cache && rm -rf autom4te.cache
|
|
|
|
ACLOCAL_AMFLAGS="-I config $ACLOCAL_AMFLAGS"
|
|
aclocal $ACLOCAL_AMFLAGS || exit 1
|
|
autoheader || exit 1
|
|
autoconf || exit 1
|
|
automake --add-missing --copy || exit 1
|