diff options
author | Bob Wilson <bob.wilson@apple.com> | 2014-02-09 22:36:31 +0000 |
---|---|---|
committer | Bob Wilson <bob.wilson@apple.com> | 2014-02-09 22:36:31 +0000 |
commit | e4b3737bbddef6bcd78179a6b9ecd23c8b23ebfe (patch) | |
tree | e4f9288b277dc9e72f267dcbcd61cf5f700d5f6e | |
parent | 0e35355c04c9e44dab651a938bb7ee3572c37851 (diff) | |
download | bcm5719-llvm-e4b3737bbddef6bcd78179a6b9ecd23c8b23ebfe.tar.gz bcm5719-llvm-e4b3737bbddef6bcd78179a6b9ecd23c8b23ebfe.zip |
Remove shell comment in the middle of a single-line command.
You can't put a comment in the middle of a command like this. This is
invalid shell syntax and breaks the build.
llvm-svn: 201057
-rw-r--r-- | llvm/cmake/modules/Makefile | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/llvm/cmake/modules/Makefile b/llvm/cmake/modules/Makefile index 936d787fd85..52140a605fe 100644 --- a/llvm/cmake/modules/Makefile +++ b/llvm/cmake/modules/Makefile @@ -53,8 +53,6 @@ $(PROJ_OBJ_DIR)/LLVMConfig.cmake: LLVMConfig.cmake.in $(LLVMBuildCMakeFrag) -e 's/@LLVM_CONFIG_EXPORTS_FILE@/$${LLVM_CMAKE_DIR}\/LLVMExports.cmake/' \ -e 's/@all_llvm_lib_deps@//' \ && \ - # TODO: Teach LLVM-Config.cmake to use builtin CMake features \ - # for library dependencies. For now add the generated fragments. \ grep '^set_property.*LLVMBUILD_LIB_DEPS_' "$(LLVMBuildCMakeFrag)" \ ) > $@ |