diff options
author | Andrew Kaylor <andrew.kaylor@intel.com> | 2015-02-03 03:08:25 +0000 |
---|---|---|
committer | Andrew Kaylor <andrew.kaylor@intel.com> | 2015-02-03 03:08:25 +0000 |
commit | 4c76da87e2eadb150d00392d89220e8e750a68ab (patch) | |
tree | abf5e74aeb6e7924389fbae87baf7a8974e3bba0 /tools | |
parent | 52288fa1e6a208812ab6be650a686c5fa3b15834 (diff) |
Really, really, really don't build llvm-pdbdump on MSVC < 2013.
There was a typo in the last attempt.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@227937 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'tools')
-rw-r--r-- | tools/CMakeLists.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/CMakeLists.txt b/tools/CMakeLists.txt index 30b12900035..26d2dfde931 100644 --- a/tools/CMakeLists.txt +++ b/tools/CMakeLists.txt @@ -67,7 +67,7 @@ if(MSVC AND NOT(MSVC_VERSION LESS 1800)) # to drop support for MSVC 2012 soon, don't build this for MSVC < 2013. add_llvm_tool_subdirectory(llvm-pdbdump) else() - ignore_llvm_tool_subdirectory(llbm-pdbdump) + ignore_llvm_tool_subdirectory(llvm-pdbdump) endif() if(NOT CYGWIN AND LLVM_ENABLE_PIC) |