From e60056d377485efa6d326965b727d1c2df265c2a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jean-Pierre=20Andr=C3=A9?= Date: Sat, 11 Feb 2017 09:36:30 +0100 Subject: [PATCH] Preventing --enable-plugins from disabling the plugins The plugins are enabled by default, and the can be disabled by the configure option --disable-plugins, but the option --enable-plugins also led to disabling them. --- configure.ac | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configure.ac b/configure.ac index 095d00b1..faee00a7 100644 --- a/configure.ac +++ b/configure.ac @@ -125,7 +125,7 @@ AC_ARG_ENABLE( [plugins], [AS_HELP_STRING([--disable-plugins], [Disable external reparse point plugins for the ntfs-3g FUSE driver])], - , + [if test x${enableval} = "xyes"; then disable_plugins="no"; fi], [disable_plugins="no"] )