summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPavel Roskin <proskin@src.gnome.org>2001-01-30 17:39:59 +0000
committerPavel Roskin <proskin@src.gnome.org>2001-01-30 17:39:59 +0000
commitc721c723cf9c1ecc7f23b0a5c02473efe6db5ce0 (patch)
tree62b81b00d2850ac4695570050dee800422708ef9
parentb29efc9b9b529295ddfd784ee028657d711bf0ea (diff)
downloadgnome-common-c721c723cf9c1ecc7f23b0a5c02473efe6db5ce0.tar.gz
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=1542
-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 137a39d..8ca361f 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"