diff options
author | Brian Paul <[email protected]> | 2014-12-01 13:34:15 -0700 |
---|---|---|
committer | Brian Paul <[email protected]> | 2014-12-01 15:22:08 -0700 |
commit | ded14afa42372bb8cf4e3c7e09324585d72c7bb5 (patch) | |
tree | 0b8f5613ecf88470869ff60a11ae16e8cac32ad6 /src/gallium/auxiliary/pipe-loader | |
parent | 0806bf88158cb3ac865762285f11082114520c48 (diff) |
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 <[email protected]>
Diffstat (limited to 'src/gallium/auxiliary/pipe-loader')
-rw-r--r-- | src/gallium/auxiliary/pipe-loader/Makefile.am | 1 |
1 files changed, 1 insertions, 0 deletions
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 \ |