projects
/
oota-llvm.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
7f5deb1
)
Try to fix windows build after r198136.
author
Nico Weber
<nicolasweber@gmx.de>
Sat, 28 Dec 2013 23:50:01 +0000
(23:50 +0000)
committer
Nico 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
patch
|
blob
|
history
diff --git
a/cmake/modules/AddLLVM.cmake
b/cmake/modules/AddLLVM.cmake
index 6a9263e3a197ea01562c6a9c88da869732e5cfb0..5be5a5448da7c3108c427a6c26fdeab30471b439 100644
(file)
--- 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}")