From: Kefu Chai Date: Fri, 19 Aug 2016 01:51:11 +0000 (+0800) Subject: cmake: fix unmatched endforeach X-Git-Tag: v11.0.1~429^2~3 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=ab3db4e8ec8143c5ac1a8966d7cf15ad96488615;p=ceph.git cmake: fix unmatched endforeach Signed-off-by: Kefu Chai --- diff --git a/src/erasure-code/jerasure/CMakeLists.txt b/src/erasure-code/jerasure/CMakeLists.txt index ff81cb3897d6..f3b2152d76ca 100644 --- a/src/erasure-code/jerasure/CMakeLists.txt +++ b/src/erasure-code/jerasure/CMakeLists.txt @@ -67,4 +67,4 @@ foreach(flavor ${jerasure_flavors}) $) target_link_libraries(${plugin_name} ${EXTRALIBS}) install(TARGETS ${plugin_name} DESTINATION ${erasure_plugin_dir}) -endforeach(flavor flavors) +endforeach() diff --git a/src/erasure-code/shec/CMakeLists.txt b/src/erasure-code/shec/CMakeLists.txt index f76c6712ab67..b49f75fc7208 100644 --- a/src/erasure-code/shec/CMakeLists.txt +++ b/src/erasure-code/shec/CMakeLists.txt @@ -22,4 +22,4 @@ foreach(flavor ${jerasure_flavors}) $) target_link_libraries(${plugin_name} ${EXTRALIBS}) install(TARGETS ${plugin_name} DESTINATION ${erasure_plugin_dir}) -endforeach(flavor flavors) +endforeach()