comparison bootstrap @ 476:365c3adc99c1 stable-1.0

Fixed "bootstrap" script to work with MacOS X.
author Ryan C. Gordon <icculus@icculus.org>
date Sat, 08 May 2004 22:10:44 +0000
parents 2b9131a7653c
children
comparison
equal deleted inserted replaced
472:3bd3d8da45c2 476:365c3adc99c1
1 #!/bin/sh 1 #!/bin/sh
2 2
3 set -e 3 set -e
4 echo "Initial preparation...this can take awhile, so sit tight..." 4 echo "Initial preparation...this can take awhile, so sit tight..."
5 aclocal 5 aclocal
6 libtoolize --automake --copy --force 6
7 # MacOS X renames GNU libtool to "glibtool", since they have something
8 # else called "libtool" already...
9 if [ -x /usr/bin/glibtoolize ]; then
10 glibtoolize --automake --copy --force
11 else
12 libtoolize --automake --copy --force
13 fi
14
7 autoheader 15 autoheader
8 automake --foreign --add-missing --copy 16 automake --foreign --add-missing --copy
9 autoconf 17 autoconf
10 18
11 echo "You are now ready to run ./configure ..." 19 echo "You are now ready to run ./configure ..."