From d4b80b8e6840f6e495c412b77cbd4e5617705dcc Mon Sep 17 00:00:00 2001 From: Andrew Kaylor Date: Tue, 3 Feb 2015 03:08:25 +0000 Subject: [PATCH] Really, really, really don't build llvm-pdbdump on MSVC < 2013. There was a typo in the last attempt. llvm-svn: 227937 --- llvm/tools/CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/llvm/tools/CMakeLists.txt b/llvm/tools/CMakeLists.txt index 30b129000356..26d2dfde931a 100644 --- a/llvm/tools/CMakeLists.txt +++ b/llvm/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)