mirror of
https://git.savannah.gnu.org/git/guile.git
synced 2025-04-30 03:40:34 +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
|
rm -rf libltdl
|
||||||
libtoolize --force --copy --automake --ltdl
|
libtoolize --force --copy --automake --ltdl
|
||||||
|
|
||||||
|
# Fix older versions of libtool.
|
||||||
# Make sure we use a ./configure.in compatible autoconf in ./libltdl/
|
# Make sure we use a ./configure.in compatible autoconf in ./libltdl/
|
||||||
mv libltdl/configure.in libltdl/configure.tmp
|
if [ -f libltdl/configure.in ]; then
|
||||||
echo 'AC_PREREQ(2.50)' > libltdl/configure.in
|
mv libltdl/configure.in libltdl/configure.tmp
|
||||||
cat libltdl/configure.tmp >> libltdl/configure.in
|
echo 'AC_PREREQ(2.50)' > libltdl/configure.in
|
||||||
rm libltdl/configure.tmp
|
cat libltdl/configure.tmp >> libltdl/configure.in
|
||||||
|
rm libltdl/configure.tmp
|
||||||
|
fi
|
||||||
######################################################################
|
######################################################################
|
||||||
|
|
||||||
autoheader
|
autoheader
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue