[Lldb-commits] [lldb] 7bbd407 - [lldb/SWIG] Undo incorrect substitution

Jonas Devlieghere via lldb-commits lldb-commits at lists.llvm.org
Thu Jan 9 09:55:45 PST 2020


Author: Jonas Devlieghere
Date: 2020-01-09T09:55:39-08:00
New Revision: 7bbd4076c1984165568c978ff15b77dbfe52b6f0

URL: https://github.com/llvm/llvm-project/commit/7bbd4076c1984165568c978ff15b77dbfe52b6f0
DIFF: https://github.com/llvm/llvm-project/commit/7bbd4076c1984165568c978ff15b77dbfe52b6f0.diff

LOG: [lldb/SWIG] Undo incorrect substitution

The Python directory for the script interpreter is still capitalized.

Added: 
    

Modified: 
    lldb/bindings/python.swig

Removed: 
    


################################################################################
diff  --git a/lldb/bindings/python.swig b/lldb/bindings/python.swig
index 56fab9ff1795..b086d436e57b 100644
--- a/lldb/bindings/python.swig
+++ b/lldb/bindings/python.swig
@@ -116,7 +116,7 @@ def lldb_iter(obj, getsize, getelem):
 %include "./headers.swig"
 
 %{
-#include "../source/Plugins/ScriptInterpreter/python/PythonDataObjects.h"
+#include "../source/Plugins/ScriptInterpreter/Python/PythonDataObjects.h"
 #include "../bindings/python/python-swigsafecast.swig"
 using namespace lldb_private;
 using namespace lldb_private::python;


        


More information about the lldb-commits mailing list