From 432ce7e60fb58d3cbb019ab3159b7d393afaaed6 Mon Sep 17 00:00:00 2001 From: Niels de Vos Date: Wed, 10 Apr 2013 17:51:37 +0200 Subject: build: really disable fusermount if you say so There is no logic in configure.ac that provides a $disable_fusermount variable. So, use the $enable_fusermount variable instead. Follow-up-for: http://review.gluster.org/4773 Change-Id: I81cdbd0045409d0036438d542ca6dc1934f784e4 BUG: 948205 Signed-off-by: Niels de Vos Reviewed-on: http://review.gluster.org/4803 Reviewed-by: Kaleb KEITHLEY Reviewed-by: Sachidananda Urs Tested-by: Gluster Build System --- configure.ac | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'configure.ac') diff --git a/configure.ac b/configure.ac index 62512936..6357b19f 100644 --- a/configure.ac +++ b/configure.ac @@ -305,7 +305,7 @@ AC_ARG_ENABLE([fusermount], [Use system's fusermount])) BUILD_FUSERMOUNT="yes" -if test "x$disable_fusermount" = "xyes"; then +if test "x$enable_fusermount" = "xno"; then BUILD_FUSERMOUNT="no" else AC_DEFINE(GF_FUSERMOUNT, 1, [Use our own fusermount]) -- cgit