Change internal function name to avoid loop issue. (#9890)

* Change internal function name to avoid loop issue.

* Fix comment.
This commit is contained in:
Xin Wang
2022-01-26 22:35:31 +08:00
committed by GitHub
parent 84f2e9fc24
commit 26ccbe9ebc

View File

@@ -50,9 +50,9 @@ endfunction()
set(VALIDATED_LIBRARIES "" CACHE INTERNAL "")
function(_ie_add_api_validator_post_build_step)
function(_ov_add_api_validator_post_build_step)
if(NOT BUILD_SHARED_LIBS)
# since _ie_add_api_validator_post_build_step
# since _ov_add_api_validator_post_build_step
# is currently run only on shared libraries, we have nothing to test
return()
endif()
@@ -149,5 +149,5 @@ endfunction()
# ie_add_api_validator_post_build_step(TARGET <name>)
#
macro(ie_add_api_validator_post_build_step)
_ie_add_api_validator_post_build_step(${ARGV})
_ov_add_api_validator_post_build_step(${ARGV})
endmacro()