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:
parent
0db83c0423
commit
452e366198
1 changed files with 7 additions and 4 deletions
11
autogen.sh
11
autogen.sh
|
@ -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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue