1
Fork 0
mirror of https://git.savannah.gnu.org/git/guile.git synced 2025-07-09 19:00:27 +02:00
guile/autogen.sh
2010-03-05 22:55:14 +00:00

22 lines
610 B
Bash
Executable file

#!/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
# Patch build-aux/ltmain.sh to apply fix for handling arguments
# correctly when invoking Windows executables. This patch comes from
# libtool's Git repository:
# http://git.savannah.gnu.org/cgit/libtool.git/commit/?id=101ad44541c6d303cf465937a212042885f4338e
patch -p1 < ltmain.sh.patch
echo "Now run configure and make."