From 7e9b20b5ec3a6b1941683df79b3bd115c49516a5 Mon Sep 17 00:00:00 2001 From: zyfncg Date: Fri, 3 Dec 2021 15:02:16 +0800 Subject: [PATCH] fix python command in cmake of api-gen (#37818) --- paddle/pten/api/lib/CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/paddle/pten/api/lib/CMakeLists.txt b/paddle/pten/api/lib/CMakeLists.txt index ed2ad801283..18954888069 100644 --- a/paddle/pten/api/lib/CMakeLists.txt +++ b/paddle/pten/api/lib/CMakeLists.txt @@ -24,7 +24,7 @@ set(api_source_file_tmp ${api_source_file}.tmp) add_custom_command( OUTPUT ${api_header_file} ${api_source_file} - COMMAND python ${api_gen_file} + COMMAND ${PYTHON_EXECUTABLE} ${api_gen_file} --api_yaml_path ${api_yaml_file} --api_header_path ${api_header_file_tmp} --api_source_path ${api_source_file_tmp} -- GitLab