diff options
author | Volker Lendecke <vl@samba.org> | 2012-11-24 11:39:02 +0100 |
---|---|---|
committer | Jeremy Allison <jra@samba.org> | 2012-11-27 01:20:24 +0100 |
commit | 5f2edd13efd447df0500952a0946188432453eb7 (patch) | |
tree | 681ec1d3dc786a1da408c9e9499b7c4c7a82bcb2 /source3 | |
parent | ed68f75b676a6b1d08f9668d29ff6d09f558fbe6 (diff) | |
download | samba-5f2edd13efd447df0500952a0946188432453eb7.tar.gz samba-5f2edd13efd447df0500952a0946188432453eb7.tar.xz samba-5f2edd13efd447df0500952a0946188432453eb7.zip |
s3: Fix bug 9428 -- inotify detection broken
Reviewed by: Jeremy Allison <jra@samba.org>
Autobuild-User(master): Jeremy Allison <jra@samba.org>
Autobuild-Date(master): Tue Nov 27 01:20:24 CET 2012 on sn-devel-104
Diffstat (limited to 'source3')
-rw-r--r-- | source3/configure.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/configure.in b/source3/configure.in index b74b4c2cb4..bd3bffe390 100644 --- a/source3/configure.in +++ b/source3/configure.in @@ -2509,7 +2509,7 @@ fi AC_CHECK_HEADER(sys/inotify.h) -if test x"ac_cv_header_sys_inotify_h" = x"yes"; then +if test x"$ac_cv_header_sys_inotify_h" = x"yes"; then AC_DEFINE(HAVE_INOTIFY,1,[For inotify support]) fi |