mirror of
git://github.com/lxc/lxc
synced 2025-09-05 14:09:35 +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
|