From: Olaf Faaland Date: Tue, 6 Feb 2018 23:04:12 +0000 (-0800) Subject: LU-8602 gss: autoconf check missing "test" keyword X-Git-Tag: 2.10.59~107 X-Git-Url: https://git.whamcloud.com/?p=fs%2Flustre-release.git;a=commitdiff_plain;h=4dd55cb2bcffd681117b8513a91908afe0647108 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 --- 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" ], [