1#!/bin/sh 2# 3# $Id: bootstrap.sh 446 2008-04-21 04:07:15Z boote $ 4# 5######################################################################### 6# # 7# Copyright (C) 2003 # 8# Internet2 # 9# All Rights Reserved # 10# # 11######################################################################### 12# 13# File: bootstrap 14# 15# Author: Jeff Boote 16# Internet2 17# 18# Date: Tue Sep 16 14:21:57 MDT 2003 19# 20# Description: 21# This script is used to bootstrap the autobuild 22# process. 23# 24# RUNNING THIS SCRIPT IS NOT RECOMMENDED 25# (You should just use the "configure" script 26# that was bundled with the distribution if 27# at all possible.) 28# 29case "$1" in 30 ac257) 31 alias autoconf=autoconf257 32 alias autoheader=autoheader257 33 alias automake=automake17 34 alias aclocal=aclocal17 35 export AUTOCONF=autoconf257 36 ;; 37 *) 38 ;; 39esac 40 41set -x 42libtoolize --copy --force --automake 43aclocal -I config 44autoheader 45automake --foreign --add-missing --copy 46autoconf 47rm -rf config.cache 48