diff options
| author | Jim Ingham <jingham@apple.com> | 2012-05-26 00:23:52 +0000 |
|---|---|---|
| committer | Jim Ingham <jingham@apple.com> | 2012-05-26 00:23:52 +0000 |
| commit | de22182b339a8746221ab09f67f1b39b5912e109 (patch) | |
| tree | 174fa34b949115ea385759738de6af6a96afc6ee /lldb/scripts/Python/finish-swig-Python-LLDB.sh | |
| parent | 8ed0749a34df1b9a8c1514e44247988f579bfba8 (diff) | |
| download | bcm5719-llvm-de22182b339a8746221ab09f67f1b39b5912e109.tar.gz bcm5719-llvm-de22182b339a8746221ab09f67f1b39b5912e109.zip | |
Fix the comments about LLDB_DISABLE_PYTHON in the python swig shell scripts to be more clear.
llvm-svn: 157506
Diffstat (limited to 'lldb/scripts/Python/finish-swig-Python-LLDB.sh')
| -rwxr-xr-x | lldb/scripts/Python/finish-swig-Python-LLDB.sh | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/lldb/scripts/Python/finish-swig-Python-LLDB.sh b/lldb/scripts/Python/finish-swig-Python-LLDB.sh index e7347fabd46..2e24091a2db 100755 --- a/lldb/scripts/Python/finish-swig-Python-LLDB.sh +++ b/lldb/scripts/Python/finish-swig-Python-LLDB.sh @@ -33,8 +33,10 @@ CONFIG_BUILD_DIR=$3 PYTHON_INSTALL_DIR=$4 debug_flag=$5 -# Make sure LLDB_DISABLE_PYTHON is not set, since if it is this is an iOS build where python -# is disabled +# If we don't want Python, then just do nothing here. +# Note, at present iOS doesn't have Python, so if you're building for iOS be sure to +# set LLDB_DISABLE_PYTHON to 1. + if [ ! $LLDB_DISABLE_PYTHON = "1" ] ; then if [ -n "$debug_flag" -a "$debug_flag" == "-debug" ] |

