diff options
Diffstat (limited to 'lldb/scripts/Python/build-swig-Python.sh')
-rwxr-xr-x | lldb/scripts/Python/build-swig-Python.sh | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/lldb/scripts/Python/build-swig-Python.sh b/lldb/scripts/Python/build-swig-Python.sh index 69c40a76b12..d2ed2098a5b 100755 --- a/lldb/scripts/Python/build-swig-Python.sh +++ b/lldb/scripts/Python/build-swig-Python.sh @@ -127,3 +127,10 @@ fi swig -c++ -shadow -python -I"${SRC_ROOT}/include" -I./. -outdir "${CONFIG_BUILD_DIR}" -o "${swig_output_file}" "${swig_input_file}" +# Append global variable to lldb Python module. + +current_dir=`pwd` +if [ -f "${current_dir}/append-debugger-id.py" ] +then + python ${current_dir}/append-debugger-id.py ${CONFIG_BUILD_DIR} +fi |