diff options
author | Jason Molenda <jmolenda@apple.com> | 2013-11-23 20:07:29 +0000 |
---|---|---|
committer | Jason Molenda <jmolenda@apple.com> | 2013-11-23 20:07:29 +0000 |
commit | 906f329724f7819ad24ad59fe2aed36cfdca5c24 (patch) | |
tree | 410cd6a9bc106c7cadf38edefa48ba796a12f3c9 /lldb/scripts/Python/build-swig-Python.sh | |
parent | f405dd62ecd67d8d4d389620d7c3949af0707bdc (diff) | |
download | bcm5719-llvm-906f329724f7819ad24ad59fe2aed36cfdca5c24.tar.gz bcm5719-llvm-906f329724f7819ad24ad59fe2aed36cfdca5c24.zip |
Change lldb from building against a Python framework out of
the installed SDK to using the current OS installed headers/libraries.
This change is to address the removal of the Python framework
from the Mac OS X 10.9 (Mavericks) SDK, and is the recommended
workaround via https://developer.apple.com/library/mac/technotes/tn2328/_index.html
llvm-svn: 195557
Diffstat (limited to 'lldb/scripts/Python/build-swig-Python.sh')
-rwxr-xr-x | lldb/scripts/Python/build-swig-Python.sh | 15 |
1 files changed, 0 insertions, 15 deletions
diff --git a/lldb/scripts/Python/build-swig-Python.sh b/lldb/scripts/Python/build-swig-Python.sh index efa35e8bc4a..6e6fdd7737b 100755 --- a/lldb/scripts/Python/build-swig-Python.sh +++ b/lldb/scripts/Python/build-swig-Python.sh @@ -359,20 +359,5 @@ then python ${current_dir}/modify-python-lldb.py ${CONFIG_BUILD_DIR} fi -# Fix the "#include" statement in the swig output file - -if [ -f "${current_dir}/edit-swig-python-wrapper-file.py" ] -then - if [ $MakefileCalled -eq 1 ] - then - python ${current_dir}/edit-swig-python-wrapper-file.py "${TARGET_DIR}" - else - python ${current_dir}/edit-swig-python-wrapper-file.py - fi - if [ -f "${swig_output_file}.edited" ] - then - mv "${swig_output_file}.edited" ${swig_output_file} - fi -fi fi |