mirror of
https://git.proxmox.com/git/mirror_lxc
synced 2025-05-28 18:56:52 +00:00

This is useless in a Linux only environment. The .so version is the version of the package. Signed-off-by: Cedric Le Goater <clg@fr.ibm.com> Signed-off-by: Daniel Lezcano <dlezcano@fr.ibm.com>
10 lines
176 B
Bash
Executable File
10 lines
176 B
Bash
Executable File
#!/bin/sh
|
|
|
|
set -x
|
|
|
|
test -d autom4te.cache && rm -rf autom4te.cache
|
|
aclocal -I config || exit 1
|
|
autoheader || exit 1
|
|
autoconf || exit 1
|
|
automake --add-missing --copy || exit 1
|