From: Brian Paul Date: Mon, 1 Dec 2014 20:34:15 +0000 (-0700) Subject: gallium: add include path to fix building of pipe-loader code X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=ded14afa42372bb8cf4e3c7e09324585d72c7bb5;p=mesa.git gallium: add include path to fix building of pipe-loader code The pipe-loader code wasn't finding util/u_atomic.h Reviewed-by: Matt Turner --- diff --git a/src/gallium/auxiliary/pipe-loader/Makefile.am b/src/gallium/auxiliary/pipe-loader/Makefile.am index 44917f37a4d..cb6035d85c9 100644 --- a/src/gallium/auxiliary/pipe-loader/Makefile.am +++ b/src/gallium/auxiliary/pipe-loader/Makefile.am @@ -3,6 +3,7 @@ include Makefile.sources AM_CPPFLAGS = $(DEFINES) \ $(VISIBILITY_CFLAGS) \ -I$(top_srcdir)/include \ + -I$(top_srcdir)/src \ -I$(top_srcdir)/src/loader \ -I$(top_srcdir)/src/gallium/include \ -I$(top_srcdir)/src/gallium/auxiliary \