diff options
author | Jon TURNEY <[email protected]> | 2013-11-08 13:22:54 +0000 |
---|---|---|
committer | Jon TURNEY <[email protected]> | 2013-12-01 12:30:25 +0000 |
commit | 61e0f111706a225444c927a6aeb6107b9aafe17f (patch) | |
tree | 67154d3fd939a1bb3e20b1b48a9072fc2ed21bca | |
parent | 862044c7f7d55b7e6459e3e948c376e6894a72ff (diff) |
Fix 'make check' in src/mapi/glapi/tests when builddir != srcdir
make[5]: Entering directory `/jhbuild/build/mesa/mesa/src/mapi/glapi/tests'
CXX check_table.o
/jhbuild/checkout/mesa/mesa/src/mapi/glapi/tests/check_table.cpp:29:30: fatal error: glapi/glapitable.h: No such file or directory
We should look for the generated file glapi/glapitable.h in builddir, not srcdir
Signed-off-by: Jon TURNEY <[email protected]>
-rw-r--r-- | src/mapi/glapi/tests/Makefile.am | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/mapi/glapi/tests/Makefile.am b/src/mapi/glapi/tests/Makefile.am index 26149c902ac..da1094bf214 100644 --- a/src/mapi/glapi/tests/Makefile.am +++ b/src/mapi/glapi/tests/Makefile.am @@ -3,6 +3,7 @@ AM_CFLAGS = $(PTHREAD_CFLAGS) AM_CPPFLAGS = \ $(DEFINES) \ -I$(top_srcdir)/src/gtest/include \ + -I$(top_builddir)/src/mapi \ -I$(top_srcdir)/src/mapi \ -I$(top_srcdir)/include |