From 2e665458a90c71869be81a258ae5727aa8c1929a Mon Sep 17 00:00:00 2001 From: Vinson Lee Date: Wed, 5 Aug 2020 22:44:12 -0700 Subject: [PATCH] util: Fix SCons build. Fixes: 848e7b947d0d ("util: Move stack debug functions to src/util") Signed-off-by: Vinson Lee Reviewed-by: Kristian H. Kristensen Part-of: --- src/gallium/auxiliary/Makefile.sources | 4 ---- src/util/Makefile.sources | 4 ++++ 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/src/gallium/auxiliary/Makefile.sources b/src/gallium/auxiliary/Makefile.sources index e2babbcd3ad..3fd7ea72909 100644 --- a/src/gallium/auxiliary/Makefile.sources +++ b/src/gallium/auxiliary/Makefile.sources @@ -233,10 +233,6 @@ C_SOURCES := \ util/u_debug_image.h \ util/u_debug_refcnt.c \ util/u_debug_refcnt.h \ - util/u_debug_stack.c \ - util/u_debug_stack.h \ - util/u_debug_symbol.c \ - util/u_debug_symbol.h \ util/u_dirty_flags.h \ util/u_dirty_surfaces.h \ util/u_dl.c \ diff --git a/src/util/Makefile.sources b/src/util/Makefile.sources index dc1b205bfc9..9aa82599dc4 100644 --- a/src/util/Makefile.sources +++ b/src/util/Makefile.sources @@ -109,6 +109,10 @@ MESA_UTIL_FILES := \ u_debug.c \ u_debug.h \ u_debug_memory.c \ + u_debug_stack.c \ + u_debug_stack.h \ + u_debug_symbol.c \ + u_debug_symbol.h \ u_cpu_detect.c \ u_cpu_detect.h \ os_memory_aligned.h \