[Lldb-commits] [lldb] r196933 - As consistency, invoke python with /usr/bin/env (like it is done in the rest of the file). Thanks to Xavier De Gaye for the patch

Sylvestre Ledru sylvestre at debian.org
Tue Dec 10 08:51:36 PST 2013


Author: sylvestre
Date: Tue Dec 10 10:51:35 2013
New Revision: 196933

URL: http://llvm.org/viewvc/llvm-project?rev=196933&view=rev
Log:
As consistency, invoke python with /usr/bin/env (like it is done in the rest of the file). Thanks to Xavier De Gaye for the patch

Modified:
    lldb/trunk/scripts/Python/build-swig-Python.sh

Modified: lldb/trunk/scripts/Python/build-swig-Python.sh
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/scripts/Python/build-swig-Python.sh?rev=196933&r1=196932&r2=196933&view=diff
==============================================================================
--- lldb/trunk/scripts/Python/build-swig-Python.sh (original)
+++ lldb/trunk/scripts/Python/build-swig-Python.sh Tue Dec 10 10:51:35 2013
@@ -356,7 +356,7 @@ fi
 current_dir=`pwd`
 if [ -f "${current_dir}/modify-python-lldb.py" ]
 then
-    python ${current_dir}/modify-python-lldb.py ${CONFIG_BUILD_DIR}
+    /usr/bin/env python ${current_dir}/modify-python-lldb.py ${CONFIG_BUILD_DIR}
 fi
 
 





More information about the lldb-commits mailing list