diff options
author | Emil Velikov <[email protected]> | 2017-01-12 21:54:03 +0000 |
---|---|---|
committer | Emil Velikov <[email protected]> | 2017-01-12 22:01:55 +0000 |
commit | c90f921273d4d9108f12bbea9f0c42f6ca12d770 (patch) | |
tree | 1d98b30451fbb2aa892a5824bfc047017786cce0 /src/gallium/drivers/radeonsi | |
parent | 8aaca3820cfc98705215e31b751d818154437fe4 (diff) |
ac, radeonsi: automake: add missing builddir include
The generated file is correctly stored in the builddir as of earlier
commit. Yet the commit forgot to add the respective include flag thus
the compiler would error out failing to find sid_tables.h
Bugzila: https://bugs.freedesktop.org/show_bug.cgi?id=99389
Fixes: d1dc22eb466 "ac: automake: rework sid_tables.h generation"
Signed-off-by: Emil Velikov <[email protected]>
Diffstat (limited to 'src/gallium/drivers/radeonsi')
-rw-r--r-- | src/gallium/drivers/radeonsi/Makefile.am | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/gallium/drivers/radeonsi/Makefile.am b/src/gallium/drivers/radeonsi/Makefile.am index 00c8a328c92..2d5c1a38220 100644 --- a/src/gallium/drivers/radeonsi/Makefile.am +++ b/src/gallium/drivers/radeonsi/Makefile.am @@ -25,6 +25,7 @@ include $(top_srcdir)/src/gallium/Automake.inc AM_CFLAGS = \ $(GALLIUM_DRIVER_CFLAGS) \ + -I$(top_builddir)/src/amd/common \ -I$(top_srcdir)/src/amd/common \ $(RADEON_CFLAGS) \ $(LLVM_CFLAGS) |