From: Vinson Lee Date: Thu, 6 Aug 2020 05:44:12 +0000 (-0700) Subject: util: Fix SCons build. X-Git-Url: https://git.libre-soc.org/?p=mesa.git;a=commitdiff_plain;h=2e665458a90c71869be81a258ae5727aa8c1929a 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: --- 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 \