From b23541c4d3aed0e8c66d604c2630a2ee917681e5 Mon Sep 17 00:00:00 2001 From: Mauro Rossi Date: Fri, 2 Oct 2020 00:42:32 +0200 Subject: [PATCH] android: util: add log.c to Makefile.sources MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Fixes the following building errors: external/mesa/src/intel/vulkan/anv_android.c:627: error: undefined reference to 'mesa_log' ... external/mesa/src/intel/vulkan/anv_device.c:164: error: undefined reference to 'mesa_log' Fixes: 13ea7db76 ("mesa: Promote Intel's simple logging façade for Android to util/") Signed-off-by: Mauro Rossi Acked-by: Eric Anholt Part-of: --- src/util/Makefile.sources | 1 + 1 file changed, 1 insertion(+) diff --git a/src/util/Makefile.sources b/src/util/Makefile.sources index 317d8d54fe0..edc3364298f 100644 --- a/src/util/Makefile.sources +++ b/src/util/Makefile.sources @@ -56,6 +56,7 @@ MESA_UTIL_FILES := \ u_idalloc.c \ u_idalloc.h \ list.h \ + log.c \ log.h \ macros.h \ mesa-sha1.c \