From: Pablo Camarillo Date: Fri, 3 Mar 2017 19:47:55 +0000 (+0100) Subject: Fixed PLUGIN_DISABLE bug X-Git-Tag: v17.04-rc1~130 X-Git-Url: https://gerrit.fd.io/r/gitweb?a=commitdiff_plain;h=a084d62a6e47d3505b3ed314230598704314f7bc;p=vpp.git Fixed PLUGIN_DISABLE bug Change-Id: I7a0ff25a8f74e6eda3a44f2cd7d2e022683accd9 Signed-off-by: Pablo Camarillo --- 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], [, ]) ])