From: Todd C. Miller Date: Fri, 30 Apr 2010 19:13:15 +0000 (-0400) Subject: Add missing -I$(top_srcdir) to CPPFLAGS so includes in the compat dir X-Git-Tag: SUDO_1_8_0~676 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=1438664047aabe9168ed54ec3f5a61a3e13fdbc3;p=sudo Add missing -I$(top_srcdir) to CPPFLAGS so includes in the compat dir can be found when building outside the source tree. --- diff --git a/plugins/sudoers/Makefile.in b/plugins/sudoers/Makefile.in index 6614394bb..c2759e062 100644 --- a/plugins/sudoers/Makefile.in +++ b/plugins/sudoers/Makefile.in @@ -51,7 +51,7 @@ SUDOERS_LIBS = @SUDOERS_LIBS@ @AFS_LIBS@ @GETGROUPS_LIB@ $(LIBS) $(NET_LIBS) @ZL REPLAY_LIBS = @REPLAY_LIBS@ @ZLIB@ # C preprocessor flags -CPPFLAGS = -I$(incdir) -I$(top_builddir) -I$(srcdir) @CPPFLAGS@ +CPPFLAGS = -I$(incdir) -I$(top_builddir) -I$(srcdir) -I$(top_srcdir) @CPPFLAGS@ # Usually -O and/or -g CFLAGS = @CFLAGS@