URL: https://github.com/SSSD/sssd/pull/81
Author: jhrozek
 Title: #81: Please see the commit message, the fix is hopefully simple
Action: synchronized

To pull the PR as Git branch:
git remote add ghsssd https://github.com/SSSD/sssd
git fetch ghsssd pull/81/head:pr81
git checkout pr81
From 5fb6104297aa2d2ced51e377bff52136eea13e2a Mon Sep 17 00:00:00 2001
From: Jakub Hrozek <jhro...@redhat.com>
Date: Fri, 18 Nov 2016 12:19:02 +0100
Subject: [PATCH] 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
---
 src/external/inotify.m4 | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/external/inotify.m4 b/src/external/inotify.m4
index 9572f6d..25259a8 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());
_______________________________________________
sssd-devel mailing list -- sssd-devel@lists.fedorahosted.org
To unsubscribe send an email to sssd-devel-le...@lists.fedorahosted.org

Reply via email to