* configure.in: fix AC_OUTPUT_COMMANDS for ltconfig and ltmain.sh

so that they work if srcdir is relative too
This commit is contained in:
Alexandre Oliva 1999-03-11 00:31:22 +00:00 committed by Alexandre Oliva
parent ec1c9b7646
commit 0cd022a962
2 changed files with 7 additions and 2 deletions

View File

@ -1,5 +1,8 @@
1999-03-10 Alexandre Oliva <oliva@dcc.unicamp.br>
* configure.in: fix AC_OUTPUT_COMMANDS for ltconfig and ltmain.sh
so that they work if srcdir is relative too
* libtool.m4 (AC_LIBLTDL_INSTALLABLE, AC_LIBLTDL_CONVENIENCE):
avoid introducing multiple --enable options when re-running
config.status

View File

@ -68,8 +68,10 @@ done
AC_SUBST(ACINCLUDE_M4_LIST)
AC_SUBST(DIST_MAKEFILE_LIST)
AC_OUTPUT_COMMANDS([test -f ${top_srcdir}/ltconfig || ${MAKE-make} ${top_srcdir}/ltconfig])
AC_OUTPUT_COMMANDS([test -f ${top_srcdir}/ltmain.sh || ${MAKE-make} ${top_srcdir}/ltmain.sh])
AC_OUTPUT_COMMANDS([
test -f ${saved_top_srcdir}/ltconfig || ${MAKE-make} ${saved_top_srcdir}/ltconfig
test -f ${saved_top_srcdir}/ltmain.sh || ${MAKE-make} ${saved_top_srcdir}/ltmain.sh
], [saved_top_srcdir=${srcdir}])
AC_OUTPUT([Makefile doc/Makefile tests/Makefile])
# Local Variables: