mirror of
https://git.proxmox.com/git/mirror_lxc
synced 2025-06-15 02:27:26 +00:00

As the m4 directory is not used, remove the usage from the scripts. Signed-off-by: Daniel Lezcano <dlezcano@fr.ibm.com>
11 lines
201 B
Bash
Executable File
11 lines
201 B
Bash
Executable File
#!/bin/sh
|
|
|
|
set -x
|
|
|
|
test -d autom4te.cache && rm -rf autom4te.cache
|
|
libtoolize --force --copy
|
|
aclocal -I config || exit 1
|
|
autoheader || exit 1
|
|
autoconf || exit 1
|
|
automake --add-missing --copy || exit 1
|