From a084d62a6e47d3505b3ed314230598704314f7bc Mon Sep 17 00:00:00 2001 From: Pablo Camarillo Date: Fri, 3 Mar 2017 20:47:55 +0100 Subject: [PATCH] Fixed PLUGIN_DISABLE bug Change-Id: I7a0ff25a8f74e6eda3a44f2cd7d2e022683accd9 Signed-off-by: Pablo Camarillo --- src/configure.ac | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/configure.ac b/src/configure.ac index 49da62488de..813fe06786c 100644 --- a/src/configure.ac +++ b/src/configure.ac @@ -74,7 +74,7 @@ AC_DEFUN([PLUGIN_DISABLED], AC_HELP_STRING([--enable-$1-plugin], [Build $1 plugin]), [enable_$1_plugin=yes ], [enable_$1_plugin=no]) - AM_CONDITIONAL(m4_toupper((ENABLE_$1_PLUGIN), test "$enable_$1_plugin" = "yes") + AM_CONDITIONAL(m4_toupper(ENABLE_$1_PLUGIN), test "$enable_$1_plugin" = "yes") m4_append([list_of_plugins], [$1], [, ]) ]) -- 2.16.6