Try to fix windows build after r198136.
`type` can't read from stdin.
llvm-svn: 198138
diff --git a/llvm/cmake/modules/AddLLVM.cmake b/llvm/cmake/modules/AddLLVM.cmake
index 6a9263e..5be5a54 100644
--- a/llvm/cmake/modules/AddLLVM.cmake
+++ b/llvm/cmake/modules/AddLLVM.cmake
@@ -37,7 +37,7 @@
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}")