blob: fa34047f8d3a922decf6f1a488ea70b6fd162525 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
#!/bin/sh
# Usage: sh -x ./autogen.sh
set -e
[ -f GUILE-VERSION ] || {
echo "autogen.sh: run this command only at the top of guile-core."
exit 1
}
######################################################################
### update infrastructure
autoreconf -i --force --verbose
echo "Now run configure and make."
|