From 3b6e25e33296005b131454341b978445813dc725 Mon Sep 17 00:00:00 2001 From: Nico Weber Date: Sun, 29 Dec 2013 00:50:09 +0000 Subject: [PATCH] Another windows build fix attempt after r198136. The current quoting is stripped by cmake, try quoting more. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@198143 91177308-0d34-0410-b5e6-96231b3b80d8 --- cmake/modules/AddLLVM.cmake | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmake/modules/AddLLVM.cmake b/cmake/modules/AddLLVM.cmake index ad740dda728..4238f52e41d 100644 --- a/cmake/modules/AddLLVM.cmake +++ b/cmake/modules/AddLLVM.cmake @@ -37,7 +37,7 @@ function(add_llvm_symbol_exports target_name export_file) add_custom_command(OUTPUT symbol.def COMMAND ${CMAKE_COMMAND} -E echo "EXPORTS" > symbol.def - COMMAND ${CAT} "${export_file}" >> symbol.def + COMMAND ${CAT} "\"${export_file}\"" >> symbol.def DEPENDS ${export_file} VERBATIM COMMENT "Creating export file for ${target_name}") -- 2.34.1