mirror of
https://git.savannah.gnu.org/git/guile.git
synced 2025-04-29 19:30:36 +02:00
Fixes <http://bugs.gnu.org/18470>. Reported by Rob Browning <rlb@defaultvalue.org>. * autogen.sh: Invoke 'libtoolize' instead of 'libtool'.
30 lines
567 B
Bash
Executable file
30 lines
567 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
|
|
}
|
|
|
|
######################################################################
|
|
### announce build tool versions
|
|
echo ""
|
|
autoconf --version
|
|
echo ""
|
|
automake --version
|
|
echo ""
|
|
libtoolize --version
|
|
echo ""
|
|
${M4:-m4} --version
|
|
echo ""
|
|
flex --version
|
|
echo ""
|
|
|
|
######################################################################
|
|
### update infrastructure
|
|
|
|
autoreconf -i --force --verbose
|
|
|
|
echo "Now run configure and make."
|