summaryrefslogtreecommitdiff
path: root/crypto/dist/ipsec-tools/bootstrap
blob: 9a680c7be34e7472d889224b1b9327a437bb7ffa (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#!/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