>From dd27ae2a74ceb26fc70c4a15b299b68c5b33899e Mon Sep 17 00:00:00 2001 From: Paul Eggert Date: Tue, 27 Mar 2018 18:20:18 -0700 Subject: [PATCH] havelib: port to Solaris 10 /bin/sh * m4/lib-link.m4 (AC_LIB_LINKFLAGS_BODY): Use 'test ! EXPR' instead of '! test EXPR'. --- ChangeLog | 6 ++++++ m4/lib-link.m4 | 2 +- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index 99f219c26..74f3bfc71 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +2018-03-27 Paul Eggert + + 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 time_rz: work around Mac OS X 10.6 infloop diff --git a/m4/lib-link.m4 b/m4/lib-link.m4 index 4a4a185e3..df77db982 100644 --- a/m4/lib-link.m4 +++ b/m4/lib-link.m4 @@ -211,7 +211,7 @@ AC_DEFUN([AC_LIB_LINKFLAGS_BODY], 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 -- 2.14.3