diff options
author | Johannes Obermayr <[email protected]> | 2012-12-29 01:52:11 +0100 |
---|---|---|
committer | Andreas Boll <[email protected]> | 2013-01-13 12:38:38 +0100 |
commit | ebcabb88cfd19b35cd1b0a327fa055fff0c1b2be (patch) | |
tree | f589398bf3122183fa226f9ff54b23d6231761f8 /src/mesa/main/tests | |
parent | 06f3a1f792e5f280c8e83581622b2f4bab811720 (diff) |
tests: AM_CPPFLAGS must include $(top_srcdir) instead of $(top_builddir).
Reviewed-by: Andreas Boll <[email protected]>
Diffstat (limited to 'src/mesa/main/tests')
-rw-r--r-- | src/mesa/main/tests/hash_table/Makefile.am | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mesa/main/tests/hash_table/Makefile.am b/src/mesa/main/tests/hash_table/Makefile.am index 5a4aac395fb..272c63aa5ed 100644 --- a/src/mesa/main/tests/hash_table/Makefile.am +++ b/src/mesa/main/tests/hash_table/Makefile.am @@ -19,7 +19,7 @@ # CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. AM_CPPFLAGS = \ - -I../.. \ + -I$(top_srcdir)/src/mesa/main \ $(API_DEFINES) $(DEFINES) $(INCLUDE_DIRS) LDADD = \ |