]> git.ipfire.org Git - thirdparty/libtool.git/commitdiff
* libtool.m4 (_LT_AC_SYS_LIBPATH_AIX): Add newline after
authorAlbert Chin-A-Young <china@thewrittenword.com>
Sun, 5 Aug 2001 11:13:33 +0000 (11:13 +0000)
committerGary V. Vaughan <gary@gnu.org>
Sun, 5 Aug 2001 11:13:33 +0000 (11:13 +0000)
terminating '}' grouping character. Change '[0-9][0-9]'
to '0' as we've already matched it.

ChangeLog
libtool.m4

index 64698e5ec724d37091ed980f4d29cf7ffc9df0fe..c2392e4445a208762f6c58145942887e6945ce26 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+2001-08-05  Albert Chin-A-Young <china@thewrittenword.com>
+
+       * libtool.m4 (_LT_AC_SYS_LIBPATH_AIX): Add newline after
+       terminating '}' grouping character. Change '[0-9][0-9]'
+       to '0' as we've already matched it.
+
 2001-08-05  Gary V. Vaughan  <gary@gnu.org>
 
        From Brad <brad@comstyle.com>:
index 8fef47a191d472aafd9b57cd8c3eac3b62dcb514..3e8566b9f4a55a6ca206a999f60d9c1144df3bfb 100644 (file)
@@ -231,9 +231,11 @@ compiler="[$]2"
 # to the aix ld manual.
 AC_DEFUN([_LT_AC_SYS_LIBPATH_AIX],
 [AC_LINK_IFELSE(AC_LANG_PROGRAM,[
-aix_libpath=`dump -H conftest$ac_exeext 2>/dev/null |  sed -n -e '/Import File Strings/,/^$/ { /^0/ { s/^[0-9][0-9]*[ ][ ]*\(.*\)$/\1/; p; }; }'`
+aix_libpath=`dump -H conftest$ac_exeext 2>/dev/null | sed -n -e '/Import File Strings/,/^$/ { /^0/ { s/^0  *\(.*\)$/\1/; p; }
+}'`
 # Check for a 64-bit object if we didn't find anything.
-if test -z "$aix_libpath"; then aix_libpath=`dump -HX64 conftest$ac_exeext 2>/dev/null |  sed -n -e '/Import File Strings/,/^$/ { /^0/ { s/^[0-9][0-9]*[ ][ ]*\(.*\)$/\1/; p; }; }'`; fi],[])
+if test -z "$aix_libpath"; then aix_libpath=`dump -HX64 conftest$ac_exeext 2>/dev/null | sed -n -e '/Import File Strings/,/^$/ { /^0/ { s/^0  *\(.*\)$/\1/; p; }
+}'`; fi],[])
 if test -z "$aix_libpath"; then aix_libpath="/usr/lib:/lib"; fi
 ])# _LT_AC_SYS_LIBPATH_AIX