* libtoolize.m4sh (func_scan_files): Be sure to set the

default libltdl mode to 'subproject' when libtoolize is
executed before configure.ac has been updated.
This commit is contained in:
Gary V. Vaughan 2008-01-28 05:04:51 +00:00
parent 0ade925948
commit 8d10890da5
2 changed files with 10 additions and 1 deletions

View File

@ -1,3 +1,9 @@
2008-01-28 Gary V. Vaughan <gary@gnu.org>
* libtoolize.m4sh (func_scan_files): Be sure to set the
default libltdl mode to 'subproject' when libtoolize is
executed before configure.ac has been updated.
2008-01-27 Gary V. Vaughan <gary@gnu.org>
* libtoolize.m4sh (func_install_pkgconfig_files)

View File

@ -394,8 +394,11 @@ func_scan_files ()
test -n "$configure_ac" && my_configure_ac="$configure_ac: "
func_verbose "${my_configure_ac}not using Autoconf"
# Make sure ltdldir is set, even though we return early here:
# Make sure ltdldir and ltdl_mode have sensible defaults
# since we return early here:
test -n "$ltdldir" || ltdldir=libltdl
test -n "$ltdl_mode" || ltdl_mode=subproject
return
}