[Lldb-commits] [lldb] 9206322 - [lldb/CMake] Fix typo that prevented regenerating the bindings

Jonas Devlieghere via lldb-commits lldb-commits at lists.llvm.org
Fri May 29 23:51:28 PDT 2020


Author: Jonas Devlieghere
Date: 2020-05-29T23:51:22-07:00
New Revision: 92063228f85bfe22a6dfe20bf01c99ffe6ff3130

URL: https://github.com/llvm/llvm-project/commit/92063228f85bfe22a6dfe20bf01c99ffe6ff3130
DIFF: https://github.com/llvm/llvm-project/commit/92063228f85bfe22a6dfe20bf01c99ffe6ff3130.diff

LOG: [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.

Added: 
    

Modified: 
    lldb/bindings/CMakeLists.txt

Removed: 
    


################################################################################
diff  --git a/lldb/bindings/CMakeLists.txt b/lldb/bindings/CMakeLists.txt
index 92ae402c478e..ace34191a3c5 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


        


More information about the lldb-commits mailing list