From d97874cbd909eb706886cd0cdd418f812c119ef9 Mon Sep 17 00:00:00 2001 From: Darren Tucker Date: Fri, 13 Apr 2018 13:43:55 +1000 Subject: Using "==" in shell tests is not portable. Patch from rsbecker at nexbridge.com. --- configure.ac | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'configure.ac') diff --git a/configure.ac b/configure.ac index 8aad45169..7cf6d61dd 100644 --- a/configure.ac +++ b/configure.ac @@ -1399,7 +1399,7 @@ AC_RUN_IFELSE( ) AC_MSG_RESULT([$func_calloc_0_nonnull]) -if test "x$func_calloc_0_nonnull" == "xyes"; then +if test "x$func_calloc_0_nonnull" = "xyes"; then AC_DEFINE(HAVE_CALLOC, 1, [calloc(0, x) returns non-null]) else AC_DEFINE(HAVE_CALLOC, 0, [calloc(0, x) returns NULL]) -- cgit v1.2.3