From 92063228f85bfe22a6dfe20bf01c99ffe6ff3130 Mon Sep 17 00:00:00 2001 From: Jonas Devlieghere Date: Fri, 29 May 2020 23:50:26 -0700 Subject: [PATCH] [lldb/CMake] Fix typo that prevented regenerating the bindings A typo in the GLOB patter prevented us from detecting changes in the interface files and trigger SWIG to regenerate the bindings. --- lldb/bindings/CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lldb/bindings/CMakeLists.txt b/lldb/bindings/CMakeLists.txt index 92ae402..ace3419 100644 --- a/lldb/bindings/CMakeLists.txt +++ b/lldb/bindings/CMakeLists.txt @@ -1,4 +1,4 @@ -file(GLOB SWIG_INTERFACES interfaces/*.i) +file(GLOB SWIG_INTERFACES interface/*.i) file(GLOB_RECURSE SWIG_SOURCES *.swig) file(GLOB SWIG_HEADERS ${LLDB_SOURCE_DIR}/include/lldb/API/*.h -- 2.7.4