Skip to content

Commit 5e0bf67

Browse files
committed
[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.
1 parent 189aa5b commit 5e0bf67

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

lldb/bindings/python.swig

+4-4
Original file line numberDiff line numberDiff line change
@@ -111,21 +111,21 @@ def lldb_iter(obj, getsize, getelem):
111111
%}
112112

113113
%include <std_string.i>
114-
%include "./Python/python-typemaps.swig"
114+
%include "./python/python-typemaps.swig"
115115
%include "./macros.swig"
116116
%include "./headers.swig"
117117

118118
%{
119-
#include "../source/Plugins/ScriptInterpreter/Python/PythonDataObjects.h"
119+
#include "../source/Plugins/ScriptInterpreter/python/PythonDataObjects.h"
120120
#include "../bindings/python/python-swigsafecast.swig"
121121
using namespace lldb_private;
122122
using namespace lldb_private::python;
123123
using namespace lldb;
124124
%}
125125

126126
%include "./interfaces.swig"
127-
%include "./Python/python-extensions.swig"
128-
%include "./Python/python-wrapper.swig"
127+
%include "./python/python-extensions.swig"
128+
%include "./python/python-wrapper.swig"
129129

130130
%pythoncode%{
131131
debugger_unique_id = 0

0 commit comments

Comments
 (0)