Skip to content

Commit

Permalink
Fix path quoting DIA SDK
Browse files Browse the repository at this point in the history
  • Loading branch information
cristianadam committed Jan 22, 2020
1 parent c1a0a21 commit a764f1a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion llvm/cmake/config-ix.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -483,7 +483,7 @@ if( MSVC )
# though that we should handle it. We do so by simply checking that
# the DIA SDK folder exists. Should this happen you will need to
# uninstall VS 2012 and then re-install VS 2013.
if (IS_DIRECTORY ${MSVC_DIA_SDK_DIR})
if (IS_DIRECTORY "${MSVC_DIA_SDK_DIR}")
set(HAVE_DIA_SDK 1)
else()
set(HAVE_DIA_SDK 0)
Expand Down

0 comments on commit a764f1a

Please sign in to comment.