From cde335a1c296ddc294881b43b7818ddc6604dfcd Mon Sep 17 00:00:00 2001 From: Chen Weihang Date: Mon, 8 Nov 2021 12:57:38 +0800 Subject: [PATCH] fix fleet executor dep error (#37025) --- paddle/fluid/distributed/fleet_executor/CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/paddle/fluid/distributed/fleet_executor/CMakeLists.txt b/paddle/fluid/distributed/fleet_executor/CMakeLists.txt index 3f8d5e6bfd3..8598657c047 100644 --- a/paddle/fluid/distributed/fleet_executor/CMakeLists.txt +++ b/paddle/fluid/distributed/fleet_executor/CMakeLists.txt @@ -12,7 +12,7 @@ endif() cc_library(fleet_executor SRCS fleet_executor.cc carrier.cc interceptor.cc interceptor_message_service.cc message_bus.cc - DEPS fleet_executor_desc_proto interceptor_message_proto ${BRPC_DEPS}) + DEPS proto_desc fleet_executor_desc_proto interceptor_message_proto ${BRPC_DEPS}) if(WITH_DISTRIBUTE) set(DISTRIBUTE_COMPILE_FLAGS "-Wno-non-virtual-dtor -Wno-error=non-virtual-dtor -Wno-error=delete-non-virtual-dtor") -- GitLab