Module: Mesa Branch: master Commit: 2e665458a90c71869be81a258ae5727aa8c1929a URL: http://cgit.freedesktop.org/mesa/mesa/commit/?id=2e665458a90c71869be81a258ae5727aa8c1929a
Author: Vinson Lee <[email protected]> Date: Wed Aug 5 22:44:12 2020 -0700 util: Fix SCons build. Fixes: 848e7b947d0d ("util: Move stack debug functions to src/util") Signed-off-by: Vinson Lee <[email protected]> Reviewed-by: Kristian H. Kristensen <[email protected]> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/6199> --- 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 \ _______________________________________________ mesa-commit mailing list [email protected] https://lists.freedesktop.org/mailman/listinfo/mesa-commit
