changeset 39292:f3e5ba124466

havelib: port to Solaris 10 /bin/sh * m4/lib-link.m4 (AC_LIB_LINKFLAGS_BODY): Use 'test ! EXPR' instead of '! test EXPR'.
author Paul Eggert <eggert@cs.ucla.edu>
date Tue, 27 Mar 2018 18:20:18 -0700
parents 27f187a5e5d0
children 76df1f39d95b
files ChangeLog m4/lib-link.m4
diffstat 2 files changed, 7 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/ChangeLog	Mon Mar 26 19:23:33 2018 -0700
+++ b/ChangeLog	Tue Mar 27 18:20:18 2018 -0700
@@ -1,3 +1,9 @@
+2018-03-27  Paul Eggert  <eggert@cs.ucla.edu>
+
+	havelib: port to Solaris 10 /bin/sh
+	* m4/lib-link.m4 (AC_LIB_LINKFLAGS_BODY): Use 'test ! EXPR'
+	instead of '! test EXPR'.
+
 2018-03-26  Paul Eggert  <eggert@cs.ucla.edu>
 
 	time_rz: work around Mac OS X 10.6 infloop
--- a/m4/lib-link.m4	Mon Mar 26 19:23:33 2018 -0700
+++ b/m4/lib-link.m4	Tue Mar 27 18:20:18 2018 -0700
@@ -211,7 +211,7 @@
         additional_includedir="$withval/include"
         additional_libdir="$withval/$acl_libdirstem"
         if test "$acl_libdirstem2" != "$acl_libdirstem" \
-           && ! test -d "$withval/$acl_libdirstem"; then
+           && test ! -d "$withval/$acl_libdirstem"; then
           additional_libdir="$withval/$acl_libdirstem2"
         fi
       fi