Try to fix windows build after r198136.
authorNico Weber <nicolasweber@gmx.de>
Sat, 28 Dec 2013 23:50:01 +0000 (23:50 +0000)
committerNico Weber <nicolasweber@gmx.de>
Sat, 28 Dec 2013 23:50:01 +0000 (23:50 +0000)
`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

index 6a9263e3a197ea01562c6a9c88da869732e5cfb0..5be5a5448da7c3108c427a6c26fdeab30471b439 100644 (file)
@@ -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}")