File:  [ELWIX - Embedded LightWeight unIX -] / embedaddon / sudo / autogen.sh
Revision 1.1.1.1 (vendor branch): download - view: text, annotated - select for diffs - revision graph
Sun Jun 15 16:12:53 2014 UTC (10 years ago) by misho
Branches: sudo, MAIN
CVS tags: v1_8_10p3_0, v1_8_10p3, HEAD
sudo v 1.8.10p3

    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>