diff options
author | Pavel Roskin <proskin@src.gnome.org> | 2001-01-30 17:39:59 +0000 |
---|---|---|
committer | Pavel Roskin <proskin@src.gnome.org> | 2001-01-30 17:39:59 +0000 |
commit | c721c723cf9c1ecc7f23b0a5c02473efe6db5ce0 (patch) | |
tree | 62b81b00d2850ac4695570050dee800422708ef9 /macros | |
parent | b29efc9b9b529295ddfd784ee028657d711bf0ea (diff) | |
download | gnome-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
Diffstat (limited to 'macros')
-rw-r--r-- | macros/gnome-vfs.m4 | 2 |
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" |