From dc5140f91ac8b10a2c8b02b7d5f937b21227e57f Mon Sep 17 00:00:00 2001 From: Daniel Grau Date: Fri, 15 Nov 2024 18:54:14 +0000 Subject: [PATCH] fix --- dataplane/standalone/BUILD | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/dataplane/standalone/BUILD b/dataplane/standalone/BUILD index 87473099..272b5534 100644 --- a/dataplane/standalone/BUILD +++ b/dataplane/standalone/BUILD @@ -76,15 +76,15 @@ cc_binary( cc_binary( name = "server", srcs = ["server.cc"], - tags = ["manual"], - deps = [ - "//dataplane/standalone/saiserver", - "@com_github_grpc_grpc//:grpc++", - ], linkopts = [ "-lprotobuf", "-lgrpc++", "-lglog", - "-lsai" + "-lsai", + ], + tags = ["manual"], + deps = [ + "//dataplane/standalone/saiserver", + "@com_github_grpc_grpc//:grpc++", ], )