AaronMatthewBrown | f4a3dda | 2009-12-08 21:36:24 +0000 | [diff] [blame] | 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 | # |
| 29 | case "$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 | ;; |
| 39 | esac |
| 40 | |
| 41 | set -x |
Jon Dugan | e34c20c | 2010-07-08 23:26:52 +0000 | [diff] [blame] | 42 | glibtoolize --copy --force --automake |
| 43 | aclocal-17 -I config |
AaronMatthewBrown | f4a3dda | 2009-12-08 21:36:24 +0000 | [diff] [blame] | 44 | autoheader |
Jon Dugan | e34c20c | 2010-07-08 23:26:52 +0000 | [diff] [blame] | 45 | automake-17 --foreign --add-missing --copy |
AaronMatthewBrown | f4a3dda | 2009-12-08 21:36:24 +0000 | [diff] [blame] | 46 | autoconf |
| 47 | rm -rf config.cache |