diff options
| author | Zachary Turner <zturner@google.com> | 2015-01-21 18:30:40 +0000 |
|---|---|---|
| committer | Zachary Turner <zturner@google.com> | 2015-01-21 18:30:40 +0000 |
| commit | 02b882a69beff06967f0c093003b30da7ef70dcd (patch) | |
| tree | 22785f4b7b98f516d6911a668149659e5205a35b /lldb/scripts | |
| parent | b00554886f3ad7cd5a65a8955230bae1ed8c48e4 (diff) | |
| download | bcm5719-llvm-02b882a69beff06967f0c093003b30da7ef70dcd.tar.gz bcm5719-llvm-02b882a69beff06967f0c093003b30da7ef70dcd.zip | |
Revert "Some fixes for linking Python on Windows."
This reverts commit r226679. For some reason it was
not generating the same behavior as manually specifying
the include dir, library path, and exe path, and it was
causing the test suite to fail to run.
llvm-svn: 226683
Diffstat (limited to 'lldb/scripts')
| -rw-r--r-- | lldb/scripts/CMakeLists.txt | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/lldb/scripts/CMakeLists.txt b/lldb/scripts/CMakeLists.txt index 58527a87837..b0023968078 100644 --- a/lldb/scripts/CMakeLists.txt +++ b/lldb/scripts/CMakeLists.txt @@ -3,8 +3,7 @@ set(LLVM_NO_RTTI 1) file(GLOB SWIG_INPUTS Python/interface/*.i) if (CMAKE_SYSTEM_NAME MATCHES "Windows") - STRING(REGEX REPLACE "[.]lib" ".dll" PYTHON_DLL ${PYTHON_LIBRARY}) - message("Copying ${PYTHON_DLL} to ${CMAKE_BINARY_DIR}/bin") + STRING(REGEX REPLACE ".lib" ".dll" PYTHON_DLL ${PYTHON_LIBRARY}) file(COPY ${PYTHON_DLL} DESTINATION ${CMAKE_BINARY_DIR}/bin) endif () |

