[Lldb-commits] [PATCH] D26757: Fix broken escaping of commands in the build

2016-12-05 Thread bryant via lldb-commits
bryant added inline comments. Comment at: CMakeLists.txt:46 +COMMAND + ${PYTHON_EXECUTABLE} ${CMAKE_CURRENT_SOURCE_DIR}/scripts/finishSwigWrapperClasses.py + --srcRoot=${LLDB_SOURCE_DIR} You can reduce diff noise by leaving format

[Lldb-commits] [PATCH] D26757: Fix broken escaping of commands in the build

2016-12-05 Thread bryant via lldb-commits
bryant added inline comments. Comment at: scripts/Python/prepare_binding_Python.py:222 +) +logging.info("running swig with: %r", command) ldrumm wrote: > bryant wrote: > > You can reduce diff noise by limiting your changes to removing the %s. So, > > >

[Lldb-commits] [PATCH] D26757: Fix broken escaping of commands in the build

2016-12-05 Thread bryant via lldb-commits
bryant added inline comments. Comment at: CMakeLists.txt:53 + --lldbLibDir=lib${LLVM_LIBDIR_SUFFIX} + ${FINISH_EXTRA_ARGS} +VERBATIM The indentation here could match the above. https://reviews.llvm.org/D26757 _