mirror of
https://git.savannah.gnu.org/git/guile.git
synced 2025-07-09 19:00:27 +02:00
(From http://git.savannah.gnu.org/cgit/libtool.git/commit/?id=101ad44541c6d303cf465937a212042885f4338e) * ltmain.sh.patch: New file. * autogen.sh: Apply patch to build-aux/ltmain.sh.
22 lines
610 B
Bash
Executable file
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."
|