From 856edc31417dd9459776ee68dff2d59c002eef74 Mon Sep 17 00:00:00 2001 From: Emmanuel Dreyfus Date: Sun, 10 Jan 2016 18:00:58 +0100 Subject: POSIX shell compliance: == operator POSIX shell uses = and not ==, the later being a bash extension. BUG: 1129939 Change-Id: I9d51225de99c1607894211e68808b63100696fef Signed-off-by: Emmanuel Dreyfus Reviewed-on: http://review.gluster.org/13209 Reviewed-by: Michael Adam Reviewed-by: Venky Shankar Tested-by: NetBSD Build System --- configure.ac | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configure.ac b/configure.ac index 5c89394f91d..b9d32293b8f 100644 --- a/configure.ac +++ b/configure.ac @@ -1269,7 +1269,7 @@ AC_ARG_ENABLE([experimental], [Disable building experimental xlators])) BUILD_EXPERIMENTAL="yes" -if test "x$enable_experimental" == "xno"; then +if test "x$enable_experimental" = "xno"; then BUILD_EXPERIMENTAL="no" fi AM_CONDITIONAL([ENABLE_EXPERIMENTAL], [test x$BUILD_EXPERIMENTAL = xyes]) -- cgit