diff options
author | Matt Turner <mattst88@gmail.com> | 2015-07-07 23:33:57 -0700 |
---|---|---|
committer | Matt Turner <mattst88@gmail.com> | 2015-07-09 15:49:02 -0700 |
commit | a2dde3a8dabbbd45fb3155771bc1802866ff5f61 (patch) | |
tree | 643b147d41cc2f14a2e4253ecdbfd647239945f9 /src/util | |
parent | c04339486a26b7bee3575bf30dde4f7152a70211 (diff) |
util: Don't link to SHA1 library if shader-cache is disabled.
Reviewed-by: Kenneth Graunke <kenneth@whitecape.org>
Diffstat (limited to 'src/util')
-rw-r--r-- | src/util/Makefile.am | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/util/Makefile.am b/src/util/Makefile.am index 2e7542e424..1e087b40d3 100644 --- a/src/util/Makefile.am +++ b/src/util/Makefile.am @@ -46,9 +46,9 @@ libmesautil_la_SOURCES = \ if ENABLE_SHADER_CACHE libmesautil_la_SOURCES += $(MESA_UTIL_SHADER_CACHE_FILES) -endif libmesautil_la_LIBADD = $(SHA1_LIBS) +endif roundeven_test_LDADD = -lm |