From 4dd55cb2bcffd681117b8513a91908afe0647108 Mon Sep 17 00:00:00 2001 From: Olaf Faaland Date: Tue, 6 Feb 2018 15:04:12 -0800 Subject: [PATCH] LU-8602 gss: autoconf check missing "test" keyword Change https://review.whamcloud.com/31095 introduced an error in the autoconf, omitting the command "test" in an autoconf check. Add it. Signed-off-by: Olaf Faaland Change-Id: I525805801d9e8166ec1064dccbf6cec6f97efdfa Reviewed-on: https://review.whamcloud.com/31191 Reviewed-by: Jeremy Filizetti Tested-by: Jenkins Reviewed-by: James Simmons Tested-by: Maloo Reviewed-by: Sebastien Buisson Reviewed-by: Oleg Drokin --- lustre/autoconf/lustre-core.m4 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lustre/autoconf/lustre-core.m4 b/lustre/autoconf/lustre-core.m4 index 0fe194b..dbc3416 100644 --- a/lustre/autoconf/lustre-core.m4 +++ b/lustre/autoconf/lustre-core.m4 @@ -323,7 +323,7 @@ AS_IF([test "x$enable_gss" != xno], [ gss_conf_test="failure" ]) - AS_IF([test "x$gss_conf_test" = xsuccess && "x$enable_gss" != xno], [ + AS_IF([test "x$gss_conf_test" = xsuccess && test "x$enable_gss" != xno], [ AC_DEFINE([HAVE_GSS], [1], [Define this is if you enable gss]) enable_gss="yes" ], [ -- 1.8.3.1