From 3ab1aa82a253b6b38c00710bec6eb2a1eb5420bf Mon Sep 17 00:00:00 2001 From: Nico Weber Date: Sat, 28 Dec 2013 23:50:01 +0000 Subject: Try to fix windows build after r198136. `type` can't read from stdin. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@198138 91177308-0d34-0410-b5e6-96231b3b80d8 --- cmake/modules/AddLLVM.cmake | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'cmake') diff --git a/cmake/modules/AddLLVM.cmake b/cmake/modules/AddLLVM.cmake index 6a9263e3a1..5be5a5448d 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 -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}") -- cgit v1.2.3