temporarily disable elisp exception tests
[bpt/guile.git] / autogen.sh
1 #!/bin/sh
2 # Usage: sh -x ./autogen.sh
3
4 set -e
5
6 [ -f GUILE-VERSION ] || {
7 echo "autogen.sh: run this command only at the top of guile-core."
8 exit 1
9 }
10
11 ######################################################################
12 ### announce build tool versions
13 echo ""
14 autoconf --version
15 echo ""
16 automake --version
17 echo ""
18
19 # Typical MacOS X installations rename 'libtoolize' to 'glibtoolize', so
20 # adjust to that.
21 if test "`uname -s`" = "Darwin"; then
22 glibtoolize --version
23 else
24 libtoolize --version
25 fi
26
27 echo ""
28 ${M4:-m4} --version
29 echo ""
30 flex --version
31 echo ""
32
33 ######################################################################
34 ### update infrastructure
35
36 autoreconf -i --force --verbose
37
38 echo "Now run configure and make."