diff options
author | vinayak hegde <vinayak@gluster.com> | 2009-11-02 23:41:26 +0000 |
---|---|---|
committer | Anand V. Avati <avati@dev.gluster.com> | 2009-11-03 06:48:50 -0800 |
commit | c1aa64729130aab9b58925871768d6c9c7d6a4ba (patch) | |
tree | 055a1c7ad125825e01d65f5cced79a09825ee1b4 /configure.ac | |
parent | 7269a745125d46d52f31a4550136690fd0166355 (diff) |
configure.ac: Before checking for libglusterfsclient BUILD_LIBGLUSTERFSCLIENT should be initialized to no.
Signed-off-by: Vinayak <vinayak@gluster.com>
Signed-off-by: Anand V. Avati <avati@dev.gluster.com>
BUG: 353 (./configure adds libglusterfsclient when it shouldn't)
URL: http://bugs.gluster.com/cgi-bin/bugzilla3/show_bug.cgi?id=353
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac index 9f1e20831..df43b8077 100644 --- a/configure.ac +++ b/configure.ac @@ -198,7 +198,7 @@ AC_ARG_ENABLE([libglusterfsclient], AC_HELP_STRING([--disable-libglusterfsclient], [Do not build libglusterfsclient])) -BUILD_LIBGLUSTERFSCLIENT="yes" +BUILD_LIBGLUSTERFSCLIENT=no if test "x$enable_libglusterfsclient" != "xno"; then LIBGLUSTERFSCLIENT_SUBDIR="libglusterfsclient" |