Author: Jonas Devlieghere
Date: 2020-01-09T09:23:01-08:00
New Revision: 5e0bf6772e2ca450d3433fca8b47ce7bac5a6cc7

URL: 
https://github.com/llvm/llvm-project/commit/5e0bf6772e2ca450d3433fca8b47ce7bac5a6cc7
DIFF: 
https://github.com/llvm/llvm-project/commit/5e0bf6772e2ca450d3433fca8b47ce7bac5a6cc7.diff

LOG: [lldb/SWIG] Fix capitalization for case sensitive file systems.

When moving the Python directory I renamed it to python (lowercase) but
didn't update the python.swig file.

Added: 
    

Modified: 
    lldb/bindings/python.swig

Removed: 
    


################################################################################
diff  --git a/lldb/bindings/python.swig b/lldb/bindings/python.swig
index cf716da4a477..56fab9ff1795 100644
--- a/lldb/bindings/python.swig
+++ b/lldb/bindings/python.swig
@@ -111,12 +111,12 @@ def lldb_iter(obj, getsize, getelem):
 %}
 
 %include <std_string.i>
-%include "./Python/python-typemaps.swig"
+%include "./python/python-typemaps.swig"
 %include "./macros.swig"
 %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;
@@ -124,8 +124,8 @@ using namespace lldb;
 %}
 
 %include "./interfaces.swig"
-%include "./Python/python-extensions.swig"
-%include "./Python/python-wrapper.swig"
+%include "./python/python-extensions.swig"
+%include "./python/python-wrapper.swig"
 
 %pythoncode%{
 debugger_unique_id = 0


        
_______________________________________________
lldb-commits mailing list
lldb-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits

Reply via email to