]> git.ipfire.org Git - thirdparty/libtool.git/commitdiff
* libtool.m4 (AC_LIBTOOL_SYS_DYNAMIC_LINKER) [ linux ]: sed 3.02 does
authorRalf Wildenhues <Ralf.Wildenhues@gmx.de>
Wed, 27 Apr 2005 11:53:26 +0000 (11:53 +0000)
committerRalf Wildenhues <Ralf.Wildenhues@gmx.de>
Wed, 27 Apr 2005 11:53:26 +0000 (11:53 +0000)
not understand t in regex.
Reported by Tim Van Holder <tim.vanholder@gmail.com>.

ChangeLog
libtool.m4

index 9918360312c8f16d2966fad85807777bd76095d0..399f3f470b75f6eb379a540f061b8241896d864f 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+2005-04-27  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
+
+       * libtool.m4 (AC_LIBTOOL_SYS_DYNAMIC_LINKER) [ linux ]: sed 3.02 does
+       not understand \t in regex.
+       Reported by Tim Van Holder <tim.vanholder@gmail.com>.
+
 2005-04-25  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
 
        * configure.ac, NEWS: Updated to 1.5.17a.
index cb355065c6d2dc3d2cb93970a7f99abc356bc5f6..f4fd9fd5c0ba0820f6d9a2c88681853606fcdc48 100644 (file)
@@ -1510,7 +1510,7 @@ linux*)
 
   # Append ld.so.conf contents to the search path
   if test -f /etc/ld.so.conf; then
-    lt_ld_extra=`awk '/^include / { system(sprintf("cd /etc; cat %s", \[$]2)); skip = 1; } { if (!skip) print \[$]0; skip = 0; }' < /etc/ld.so.conf | $SED -e 's/#.*//;s/[:,\t]/ /g;s/=[^=]*$//;s/=[^= ]* / /g;/^$/d' | tr '\n' ' '`
+    lt_ld_extra=`awk '/^include / { system(sprintf("cd /etc; cat %s", \[$]2)); skip = 1; } { if (!skip) print \[$]0; skip = 0; }' < /etc/ld.so.conf | $SED -e 's/#.*//;s/[:,   ]/ /g;s/=[^=]*$//;s/=[^= ]* / /g;/^$/d' | tr '\n' ' '`
     sys_lib_dlsearch_path_spec="/lib /usr/lib $lt_ld_extra"
   fi