From fcb5a75a666fa8eb8efe8e7d45316549b4c53ef3 Mon Sep 17 00:00:00 2001 From: Emil Velikov Date: Fri, 10 Jun 2016 20:45:01 +0100 Subject: [PATCH] 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" Cc: Tim Rowley Signed-off-by: Emil Velikov --- src/gallium/drivers/swr/Makefile.am | 1 + 1 file changed, 1 insertion(+) 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 = \ -- 2.30.2