diff options
author | Nico Weber <nicolasweber@gmx.de> | 2013-12-28 23:39:49 +0000 |
---|---|---|
committer | Nico Weber <nicolasweber@gmx.de> | 2013-12-28 23:39:49 +0000 |
commit | a69d1a88a673f43a539cf6a124fa4da684c1e0c9 (patch) | |
tree | 95017f6c23e270fc1184f2851aeddff2e149c708 /llvm/cmake/modules/AddLLVM.cmake | |
parent | c27118ddb6fa74b9d4ac67fa83268bd1e0126300 (diff) | |
download | bcm5719-llvm-a69d1a88a673f43a539cf6a124fa4da684c1e0c9.tar.gz bcm5719-llvm-a69d1a88a673f43a539cf6a124fa4da684c1e0c9.zip |
Try to fix linux build after r198136.
$ needs to be written $$ in makefiles, but not in cmakefiles.
llvm-svn: 198137
Diffstat (limited to 'llvm/cmake/modules/AddLLVM.cmake')
-rw-r--r-- | llvm/cmake/modules/AddLLVM.cmake | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/cmake/modules/AddLLVM.cmake b/llvm/cmake/modules/AddLLVM.cmake index fdd79a0abb0..6a9263e3a19 100644 --- a/llvm/cmake/modules/AddLLVM.cmake +++ b/llvm/cmake/modules/AddLLVM.cmake @@ -19,7 +19,7 @@ function(add_llvm_symbol_exports target_name export_file) add_custom_command(OUTPUT symbol.exports COMMAND echo "{" > symbol.exports COMMAND grep -q "[[:alnum:]]" ${export_file} && echo " global:" >> symbol.exports || : - COMMAND sed -e "s/$$/;/" -e "s/^/ /" < ${export_file} >> symbol.exports + COMMAND sed -e "s/$/;/" -e "s/^/ /" < ${export_file} >> symbol.exports COMMAND echo " local: *;" >> symbol.exports COMMAND echo "};" >> symbol.exports DEPENDS ${export_file} |