From: Jason Ekstrand Date: Mon, 4 Aug 2014 23:45:27 +0000 (-0700) Subject: util/tests/hash_table: Link against libmesautil instead of libmesa X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=1d47f67455d76e5b76c935df6d30b1748e81744d;p=mesa.git 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 Reviewed-by: Emil Velikov --- 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)