1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-19 02:52:53 +02:00

Try to fix windows build after r198136.

`type` can't read from stdin.

llvm-svn: 198138
This commit is contained in:
Nico Weber 2013-12-28 23:50:01 +00:00
parent 05ce04baa9
commit 63f1522f93

View 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}")