mirror of
https://git.proxmox.com/git/mirror_lxc
synced 2025-07-10 08:51:13 +00:00

From: Daniel Lezcano <dlezcano@fr.ibm.com> Create the m4 directory if it does not exist Reported-by: Dietmar Maurer <dietmar@proxmox.com> Signed-off-by: Daniel Lezcano <dlezcano@fr.ibm.com>
13 lines
275 B
Bash
Executable File
13 lines
275 B
Bash
Executable File
#!/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
|
|
aclocal $ACLOCAL_AMFLAGS || exit 1
|
|
autoheader || exit 1
|
|
autoconf || exit 1
|
|
automake --add-missing --copy || exit 1
|