diff options
author | Rico Schüller <kgbricola@web.de> | 2013-11-11 21:18:27 +0100 |
---|---|---|
committer | Matt Turner <mattst88@gmail.com> | 2013-11-11 14:06:17 -0800 |
commit | 23afe71f444067cad927273728529ff15ba394df (patch) | |
tree | 95d2d000e8ab5173622f9e18e8b786584923c611 /src | |
parent | 348b91b7dcb2c160b7e0e4f5aedf7042590a0b5e (diff) | |
download | external_mesa3d-23afe71f444067cad927273728529ff15ba394df.zip external_mesa3d-23afe71f444067cad927273728529ff15ba394df.tar.gz external_mesa3d-23afe71f444067cad927273728529ff15ba394df.tar.bz2 |
tests: Fix make check for out of tree builds.
Cc: "10.0" <mesa-stable@lists.freedesktop.org>
Reviewed-by: Matt Turner <mattst88@gmail.com>
Signed-off-by: Rico Schüller <kgbricola@web.de>
Diffstat (limited to 'src')
-rw-r--r-- | src/mapi/shared-glapi/tests/Makefile.am | 1 | ||||
-rw-r--r-- | src/mesa/main/tests/Makefile.am | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/src/mapi/shared-glapi/tests/Makefile.am b/src/mapi/shared-glapi/tests/Makefile.am index 98065fc..7e71b4f 100644 --- a/src/mapi/shared-glapi/tests/Makefile.am +++ b/src/mapi/shared-glapi/tests/Makefile.am @@ -3,6 +3,7 @@ AM_CFLAGS = $(PTHREAD_CFLAGS) AM_CPPFLAGS = \ -I$(top_srcdir)/src/gtest/include \ -I$(top_srcdir)/src/mapi \ + -I$(top_builddir)/src/mapi \ -I$(top_srcdir)/include TESTS = shared-glapi-test diff --git a/src/mesa/main/tests/Makefile.am b/src/mesa/main/tests/Makefile.am index 97713f2..0d3a51f 100644 --- a/src/mesa/main/tests/Makefile.am +++ b/src/mesa/main/tests/Makefile.am @@ -7,6 +7,7 @@ AM_CPPFLAGS = \ -I$(top_srcdir)/src/gtest/include \ -I$(top_srcdir)/src/mapi \ -I$(top_srcdir)/src/mesa \ + -I$(top_builddir)/src/mesa \ -I$(top_srcdir)/include \ $(DEFINES) $(INCLUDE_DIRS) |