a8f0ad3c37
ipsec-tools is a fork from KAME racoon/libipsec/setkey, with many enhancements.
14 lines
335 B
Bash
Executable File
14 lines
335 B
Bash
Executable File
#!/bin/sh
|
|
|
|
set -x
|
|
|
|
# Remove autoconf 2.5x's cache directory
|
|
|
|
rm -rf autom4te*.cache
|
|
|
|
aclocal -I . || exit 1
|
|
autoheader || exit 1
|
|
libtoolize --force --copy || exit 1
|
|
automake --foreign --add-missing --copy || exit 1
|
|
autoconf || exit 1
|