Annotation of embedaddon/sudo/autogen.sh, revision 1.1.1.1
1.1 misho 1: #!/bin/sh
2:
3: # OpenBSD may have multiple versions of autoconf and automake installed
4: # If the user hasn't chosen one themselves, we do here.
5: if [ "`/usr/bin/uname 2>&1`" = "OpenBSD" ]; then
6: if [ X"$AUTOMAKE_VERSION" = X"" ]; then
7: AUTOMAKE_VERSION=1.11; export AUTOMAKE_VERSION
8: fi
9: if [ X"$AUTOCONF_VERSION" = X"" ]; then
10: AUTOCONF_VERSION=2.69; export AUTOCONF_VERSION
11: fi
12: fi
13:
14: set -ex
15:
16: autoreconf -f -i -v -Wall -I m4
17:
18: rm -rf autom4te.cache
19:
20: exit 0
FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>