From 0d8ba43d97a857d06ed09327fbc115ef27730156 Mon Sep 17 00:00:00 2001 From: Philippe Proulx Date: Sat, 27 Feb 2016 04:32:11 -0500 Subject: [PATCH] configure.ac: use test "x$var" = "xyes" Signed-off-by: Philippe Proulx Signed-off-by: Mathieu Desnoyers --- configure.ac | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configure.ac b/configure.ac index c428cf9d..cfb2ddf5 100644 --- a/configure.ac +++ b/configure.ac @@ -356,7 +356,7 @@ AC_DEFINE_UNQUOTED([LTTNG_SYSTEM_RUNDIR], ["$lttng_system_rundir"], [LTTng system runtime directory]) AC_CHECK_PROG([BUILD_GEN_TP_EXAMPLES],[python],["yes"]) -AM_CONDITIONAL([BUILD_GEN_TP_EXAMPLES], [test $BUILD_GEN_TP_EXAMPLES]) +AM_CONDITIONAL([BUILD_GEN_TP_EXAMPLES], [test "x$BUILD_GEN_TP_EXAMPLES" = "xyes"]) AC_CONFIG_FILES([ Makefile -- 2.34.1