diff options
author | Pavan Sondur <pavan@gluster.com> | 2009-12-02 18:19:53 +0000 |
---|---|---|
committer | Anand V. Avati <avati@dev.gluster.com> | 2009-12-03 02:00:50 -0800 |
commit | 0cac194a149871999072e8573d7eccc4b4723e0c (patch) | |
tree | 17e0810fdb5cfebf20ae45258d29d3535f04f940 | |
parent | 29890d798167338c0aaa3a1bab26fe416ddadf19 (diff) |
Disable fusermount by default in configure.ac.
Signed-off-by: Pavan Vilas Sondur <pavan@gluster.com>
Signed-off-by: Anand V. Avati <avati@dev.gluster.com>
BUG: 343 (Placeholder bug for adding volgen into rpm, bdb makefile changes, etc)
URL: http://bugs.gluster.com/cgi-bin/bugzilla3/show_bug.cgi?id=343
-rw-r--r-- | configure.ac | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/configure.ac b/configure.ac index 43d3504a38d..556f809ab4a 100644 --- a/configure.ac +++ b/configure.ac @@ -227,12 +227,11 @@ AC_SUBST(FUSE_CLIENT_SUBDIR) # FUSERMOUNT section AC_ARG_ENABLE([fusermount], - AC_HELP_STRING([--disable-fusermount], + AC_HELP_STRING([--enable-fusermount], [Do not build fusermount])) BUILD_FUSERMOUNT="no" - -if test "x$enable_fusermount" != "xno"; then +if test "x$enable_fusermount" = "xyes"; then FUSERMOUNT_SUBDIR="contrib" BUILD_FUSERMOUNT="yes" AC_DEFINE(GF_FUSERMOUNT, 1, [Use our own fusermount]) |