From 45bff4e989036e9c9ef9fb475c4305ccc80a6c3d Mon Sep 17 00:00:00 2001 From: Marijn Suijten Date: Sun, 13 Sep 2020 14:26:21 +0200 Subject: [PATCH] util: Makefile.sources: Add disk_cache_os.{c,h} The functions in disk_cache_os are referenced by disk_cache but these files are not included in builds based on Makefile.sources such as Android, resulting in linker errors. Fixes: 4339ecde35c ("disk_cache: move cache dir generation into OS specific helper file") Signed-off-by: Marijn Suijten Reviewed-by: Bas Nieuwenhuizen Part-of: --- src/util/Makefile.sources | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/util/Makefile.sources b/src/util/Makefile.sources index 7fdcf61dca9..9c02158a87a 100644 --- a/src/util/Makefile.sources +++ b/src/util/Makefile.sources @@ -9,7 +9,7 @@ MESA_UTIL_FILES := \ blob.h \ build_id.c \ build_id.h \ - compiler.h \ + compiler.h \ crc32.c \ crc32.h \ dag.c \ @@ -18,6 +18,8 @@ MESA_UTIL_FILES := \ debug.h \ disk_cache.c \ disk_cache.h \ + disk_cache_os.c \ + disk_cache_os.h \ double.c \ double.h \ enum_operators.h \