1234567891011121314151617 |
- #!/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."
|