diff options
author | Jakub Hrozek <jhrozek@redhat.com> | 2016-11-18 12:19:02 +0100 |
---|---|---|
committer | Lukas Slebodnik <lslebodn@redhat.com> | 2016-11-22 16:17:24 +0100 |
commit | 2927dc45b9bc810f4f55bce165bb96405129e693 (patch) | |
tree | 6180c755939c06c9e0f1e3d369eed963c590416d | |
parent | 65e791f844b4513ca2c3ee23f8cd2979566b3719 (diff) | |
download | sssd-2927dc45b9bc810f4f55bce165bb96405129e693.tar.gz sssd-2927dc45b9bc810f4f55bce165bb96405129e693.tar.xz sssd-2927dc45b9bc810f4f55bce165bb96405129e693.zip |
BUILD: Fix a typo in inotify.m4
This typo prevented HAVE_INOTIFY from ever being set and as an effect,
prevented /etc/resolv.conf inotify detection from working
Reviewed-by: Lukáš Slebodník <lslebodn@redhat.com>
Reviewed-by: Fabiano Fidêncio <fidencio@redhat.com>
-rw-r--r-- | src/external/inotify.m4 | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/external/inotify.m4 b/src/external/inotify.m4 index 9572f6d2f..25259a817 100644 --- a/src/external/inotify.m4 +++ b/src/external/inotify.m4 @@ -6,8 +6,8 @@ AC_DEFUN([AM_CHECK_INOTIFY], AC_MSG_CHECKING([whether sys/inotify.h actually works]) AC_LINK_IFELSE( [AC_LANG_SOURCE([ -#ifdef HAVE_SYS_INOTITY_H -#include <sys/inotify.h>, +#ifdef HAVE_SYS_INOTIFY_H +#include <sys/inotify.h> #endif int main () { return (-1 == inotify_init()); |