aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPavel Roskin <proskin@src.gnome.org>2001-01-31 01:39:59 +0800
committerPavel Roskin <proskin@src.gnome.org>2001-01-31 01:39:59 +0800
commite1a7d7737020e19514e869d421bf4736b57f943d (patch)
treedfe4a1b13dce07a9e6971b63b2ce45337ee5c108
parent601872effd25d9e5a36d3acfa008e772408bc025 (diff)
downloadgsoc2013-evolution-e1a7d7737020e19514e869d421bf4736b57f943d.tar
gsoc2013-evolution-e1a7d7737020e19514e869d421bf4736b57f943d.tar.gz
gsoc2013-evolution-e1a7d7737020e19514e869d421bf4736b57f943d.tar.bz2
gsoc2013-evolution-e1a7d7737020e19514e869d421bf4736b57f943d.tar.lz
gsoc2013-evolution-e1a7d7737020e19514e869d421bf4736b57f943d.tar.xz
gsoc2013-evolution-e1a7d7737020e19514e869d421bf4736b57f943d.tar.zst
gsoc2013-evolution-e1a7d7737020e19514e869d421bf4736b57f943d.zip
Fix mishandling of --without-samba due to a typo.
* macros/gnome-vfs.m4 (GNOME_WITH_VFS): Fix mishandling of --without-samba due to a typo. svn path=/trunk/; revision=7914
-rw-r--r--macros/gnome-vfs.m42
1 files changed, 1 insertions, 1 deletions
diff --git a/macros/gnome-vfs.m4 b/macros/gnome-vfs.m4
index 137a39dd3c..8ca361f28b 100644
--- a/macros/gnome-vfs.m4
+++ b/macros/gnome-vfs.m4
@@ -60,7 +60,7 @@ AC_DEFUN([GNOME_WITH_VFS],[
SAMBAFILES=""
AC_ARG_WITH(samba,
[--with-samba Support smb virtual file system],[
- if test "x$withval != xno"; then
+ if test "x$withval" != "xno"; then
AC_DEFINE(WITH_SMBFS)
vfs_flags="$vfs_flags, smbfs"
smbfs="smbfs.o"