diff options
author | Michel Dänzer <[email protected]> | 2017-08-04 12:02:38 +0900 |
---|---|---|
committer | Michel Dänzer <[email protected]> | 2017-08-04 11:49:46 +0900 |
commit | b73d8d4547bbae9562e2bb20e9938bb6604aa036 (patch) | |
tree | ac825df31d8e9ea0387e6a423d64781ccba046d9 /src/gallium/targets/pipe-loader | |
parent | 08f44a497c97de6162a95c06c902e47bfedad5fe (diff) |
pipe-loader: Add driver build directory for si_driinfo.h include path
Fixes out-of-tree build failure:
.../src/gallium/targets/pipe-loader/pipe_radeonsi.c: In function ‘drm_configuration’:
.../src/gallium/targets/pipe-loader/pipe_radeonsi.c:38:33: fatal error: radeonsi/si_driinfo.h: No such file or directory
#include "radeonsi/si_driinfo.h"
^
compilation terminated.
Makefile:994: recipe for target 'pipe_radeonsi.lo' failed
make[4]: *** [pipe_radeonsi.lo] Error 1
Trivial.
Fixes: 0f8c5de8690e7c ("radeonsi: prepare for driver-specific driconf
options")
Diffstat (limited to 'src/gallium/targets/pipe-loader')
-rw-r--r-- | src/gallium/targets/pipe-loader/Makefile.am | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/gallium/targets/pipe-loader/Makefile.am b/src/gallium/targets/pipe-loader/Makefile.am index db492c5023d..050dd7d9dce 100644 --- a/src/gallium/targets/pipe-loader/Makefile.am +++ b/src/gallium/targets/pipe-loader/Makefile.am @@ -25,6 +25,7 @@ include $(top_srcdir)/src/gallium/Automake.inc AM_CPPFLAGS = \ $(GALLIUM_CFLAGS) \ -I$(top_srcdir)/include \ + -I$(top_builddir)/src/gallium/drivers \ -I$(top_srcdir)/src/gallium/drivers \ -I$(top_srcdir)/src/gallium/winsys \ -I$(top_builddir)/src/util \ |