From: Ralf Wildenhues Date: Wed, 27 Apr 2005 11:51:50 +0000 (+0000) Subject: * m4/libtool.m4 (_LT_SYS_DYNAMIC_LINKER) [ linux ]: sed 3.02 does X-Git-Tag: release-2-1b~651 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=5264845f3abc4f239d27657bf565c045f3c6b2a1;p=thirdparty%2Flibtool.git * m4/libtool.m4 (_LT_SYS_DYNAMIC_LINKER) [ linux ]: sed 3.02 does not understand \t in regex. Reported by Tim Van Holder . --- diff --git a/ChangeLog b/ChangeLog index 73f0a0b93..56ea06c90 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,9 @@ 2005-04-27 Ralf Wildenhues + * m4/libtool.m4 (_LT_SYS_DYNAMIC_LINKER) [ linux ]: sed 3.02 does + not understand \t in regex. + Reported by Tim Van Holder . + * tests/defs.m4sh (func_configure): Don't run the whole configure script with -x. diff --git a/m4/libtool.m4 b/m4/libtool.m4 index 2c12b0258..676c1e58c 100644 --- a/m4/libtool.m4 +++ b/m4/libtool.m4 @@ -2037,7 +2037,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