]> git.ipfire.org Git - thirdparty/libtool.git/commitdiff
From Roger Leigh <rl117@york.ac.uk>:
authorOssama Othman <ossama@uci.edu>
Mon, 14 Jan 2002 19:04:40 +0000 (19:04 +0000)
committerOssama Othman <ossama@debian.org>
Mon, 14 Jan 2002 19:04:40 +0000 (19:04 +0000)
* libtoolize.in (auxdirline): Fixed hardcoded value of
"configure.in." Instead use "$configure_ac" variable.  Corrects
AC_CONFIG_AUX_DIR support when using new style `configure.ac.'

* doc/libtool.texi:  Corrected typo.  "Safety" not "Saftey".

ChangeLog
doc/libtool.texi
libtoolize.in

index 13784b5679abb0030f37d039e045eb43cab07997..c1e8bd9c85eac372bc024433889b291d0eda49e1 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,12 @@
+2002-01-14  Ossama Othman  <ossama@uci.edu>
+
+       From Roger Leigh <rl117@york.ac.uk>:
+       * libtoolize.in (auxdirline): Fixed hardcoded value of
+       "configure.in." Instead use "$configure_ac" variable.  Corrects
+       AC_CONFIG_AUX_DIR support when using new style `configure.ac.'
+
+       * doc/libtool.texi:  Corrected typo.  "Safety" not "Saftey".
+
 2002-01-14  Robert Boehne  <rboehne@ricardo-us.com>
 
        * libtool.m4 (AC_DEPLIBS_CHECK_METHOD): Add mips/mipsel to list of
index 0e2101ded92df606c9e81e609f7a7c5a95f63430..f217bd984c8c924a364f31e2ba5cdb0e6dcc9ef6 100644 (file)
@@ -165,7 +165,7 @@ Using libltdl
 
 * Libltdl interface::           How to use libltdl in your programs.
 * Modules for libltdl::         Creating modules that can be @code{dlopen}ed.
-* Thread Saftey in libltdl::   Registering callbacks for multi-thread safety.
+* Thread Safety in libltdl::   Registering callbacks for multi-thread safety.
 * User defined module data::    Associating data with loaded modules.
 * Module loaders for libltdl::  Creating user defined module loaders.
 * Distributing libltdl::        How to distribute libltdl with your package.
@@ -2646,7 +2646,7 @@ distribution terms that you use for the rest of that program.
 @menu
 * Libltdl interface::           How to use libltdl in your programs.
 * Modules for libltdl::         Creating modules that can be @code{dlopen}ed.
-* Thread Saftey in libltdl::   Registering callbacks for multi-thread safety.
+* Thread Safety in libltdl::   Registering callbacks for multi-thread safety.
 * User defined module data::    Associating data with loaded modules.
 * Module loaders for libltdl::  Creating user defined module loaders.
 * Distributing libltdl::        How to distribute libltdl with your package.
@@ -2943,7 +2943,7 @@ foo1_la_LDFLAGS = -module
 @end example
 
 
-@node Thread Saftey in libltdl
+@node Thread Safety in libltdl
 @section Using libtldl in a multi threaded environment
 
 Using the @code{lt_dlmutex_register()} function, and by providing some
index 79f4a41e137550a0571101da71608e00dfb3cb29..a95b5ed6463b353d8671a1becfa249bd70760201 100644 (file)
@@ -154,7 +154,7 @@ fi
 files='config.guess config.sub ltmain.sh'
 
 auxdir=.
-auxdirline=`egrep '^AC_CONFIG_AUX_DIR' configure.in 2>/dev/null`
+auxdirline=`egrep '^AC_CONFIG_AUX_DIR' $configure_ac 2>/dev/null`
 if test -n "$auxdirline"; then
   # Handle explicit AC_CONFIG_AUX_DIR settings.
   auxdir=`echo "$auxdirline" | sed 's/^AC_CONFIG_AUX_DIR(\([^)]*\)).*$/\1/'`