diff options
author | Jason Ekstrand <[email protected]> | 2014-08-04 16:45:27 -0700 |
---|---|---|
committer | Jason Ekstrand <[email protected]> | 2014-08-05 10:52:48 -0700 |
commit | 1d47f67455d76e5b76c935df6d30b1748e81744d (patch) | |
tree | 9a576134b1b6719ebc4be8e82459c7a890be6580 /src | |
parent | 36de884ffd09de16006db5ee428426bedf960564 (diff) |
util/tests/hash_table: Link against libmesautil instead of libmesa
Bugzilla: https://bugs.freedesktop.org/show_bug.cgi?id=82159
Signed-off-by: Jason Ekstrand <[email protected]>
Reviewed-by: Emil Velikov <[email protected]>
Diffstat (limited to 'src')
-rw-r--r-- | src/util/tests/hash_table/Makefile.am | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/src/util/tests/hash_table/Makefile.am b/src/util/tests/hash_table/Makefile.am index 55cc0b72335..1eaf239d25e 100644 --- a/src/util/tests/hash_table/Makefile.am +++ b/src/util/tests/hash_table/Makefile.am @@ -21,12 +21,10 @@ AM_CPPFLAGS = \ -I$(top_srcdir)/include \ -I$(top_srcdir)/src/util \ - -I$(top_srcdir)/src/mesa \ - -I$(top_srcdir)/src/mesa/main \ - $(DEFINES) $(INCLUDE_DIRS) + $(DEFINES) LDADD = \ - $(top_builddir)/src/mesa/libmesa.la \ + $(top_builddir)/src/util/libmesautil.la \ $(PTHREAD_LIBS) \ $(DLOPEN_LIBS) |