From 5d74565a961e790ba7f28e8e44a81fb45127fd21 Mon Sep 17 00:00:00 2001 From: Cristian Morales Vega Date: Thu, 19 Apr 2018 09:39:39 +0100 Subject: [PATCH] Give priority to the build directory headers Not changing anything right now AFAIK. But if for any reason in the future we end up with two headers with the same name in the source and build directories, chances are we want to use the one in the build directory. --- Makefile.am | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile.am b/Makefile.am index 69c457bb..202e6bc2 100644 --- a/Makefile.am +++ b/Makefile.am @@ -232,7 +232,7 @@ MAYBE_CORE = endif AM_CFLAGS = $(LIBEVENT_CFLAGS) -AM_CPPFLAGS = -I$(srcdir)/compat -I$(srcdir)/include -I./include $(SYS_INCLUDES) $(LIBEVENT_CPPFLAGS) +AM_CPPFLAGS = -I$(srcdir)/compat -I./include -I$(srcdir)/include $(SYS_INCLUDES) $(LIBEVENT_CPPFLAGS) AM_LDFLAGS = $(LIBEVENT_LDFLAGS) GENERIC_LDFLAGS = -version-info $(VERSION_INFO) $(RELEASE) $(NO_UNDEFINED) $(AM_LDFLAGS) -- 2.40.0