diff options
author | Emil Velikov <[email protected]> | 2016-06-10 20:45:01 +0100 |
---|---|---|
committer | Emil Velikov <[email protected]> | 2016-06-13 15:31:24 +0100 |
commit | fcb5a75a666fa8eb8efe8e7d45316549b4c53ef3 (patch) | |
tree | b62c83a17524e1e4db4374ae485728a9236dd5a5 | |
parent | f4d26856df2628b6e0fdeee1e9be36427d8f7b74 (diff) |
swr: automake: add missing -I flag
When building from a release tarball (where the generated/built files
are in srcdir) in an OOT fashion we need to have both builddir and
srcdir in the includes list.
Otherwise we'll error out, as the file (header gen_knobs.h in this case)
won't be in the location where we are looking.
Cc: "12.0" <[email protected]>
Cc: Tim Rowley <[email protected]>
Signed-off-by: Emil Velikov <[email protected]>
-rw-r--r-- | src/gallium/drivers/swr/Makefile.am | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/gallium/drivers/swr/Makefile.am b/src/gallium/drivers/swr/Makefile.am index d211f2e58ce..8151e4a64f0 100644 --- a/src/gallium/drivers/swr/Makefile.am +++ b/src/gallium/drivers/swr/Makefile.am @@ -36,6 +36,7 @@ COMMON_CXXFLAGS = \ -I$(builddir)/rasterizer/jitter \ -I$(srcdir)/rasterizer \ -I$(srcdir)/rasterizer/core \ + -I$(srcdir)/rasterizer/scripts \ -I$(srcdir)/rasterizer/jitter COMMON_SOURCES = \ |