From bd68273d23648f912367c018160c5a84d5cae3e2 Mon Sep 17 00:00:00 2001 From: Marri Devender Rao Date: Thu, 12 Oct 2017 02:06:55 -0500 Subject: Fix configure option for build break Change-Id: I2dc3f5e7c3d104f5d9152b7c44f77068a162e94a Signed-off-by: Marri Devender Rao --- configure.ac | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/configure.ac b/configure.ac index b8af0cc..1f8cad4 100644 --- a/configure.ac +++ b/configure.ac @@ -19,8 +19,8 @@ AC_CHECK_PROG([DIRNAME], dirname, dirname) AC_ARG_ENABLE([install_scripts], AS_HELP_STRING([--enable-install_scripts], [Enable installing parser and mako script]), - [], [install_scripts=yes]) -AM_CONDITIONAL([INSTALL_SCRIPTS], [test "x$enable_install_scripts" != "xno"]) + [], [install_scripts=no]) +AM_CONDITIONAL([INSTALL_SCRIPTS], [test "x$enable_install_scripts" = "xyes"]) AS_IF([test "x$enable_install_scripts" != "xyes"], [ # Checks for typedefs, structures, and compiler characteristics. AX_CXX_COMPILE_STDCXX_14([noext]) -- cgit v1.2.1