1
Fork 0
mirror of https://git.savannah.gnu.org/git/guile.git synced 2025-04-29 19:30:36 +02:00

Only fix libltdl/configure.in if it exists. Current libtool CVS does

not need this fix.
This commit is contained in:
Marius Vollmer 2002-07-07 19:39:21 +00:00
parent 0db83c0423
commit 452e366198

View file

@ -47,11 +47,14 @@ $mscripts/render-bugs > BUGS
rm -rf libltdl
libtoolize --force --copy --automake --ltdl
# Fix older versions of libtool.
# Make sure we use a ./configure.in compatible autoconf in ./libltdl/
mv libltdl/configure.in libltdl/configure.tmp
echo 'AC_PREREQ(2.50)' > libltdl/configure.in
cat libltdl/configure.tmp >> libltdl/configure.in
rm libltdl/configure.tmp
if [ -f libltdl/configure.in ]; then
mv libltdl/configure.in libltdl/configure.tmp
echo 'AC_PREREQ(2.50)' > libltdl/configure.in
cat libltdl/configure.tmp >> libltdl/configure.in
rm libltdl/configure.tmp
fi
######################################################################
autoheader