From b31f634bcf4549a6fca5b925add7e1a524b99f3c Mon Sep 17 00:00:00 2001 From: Dalton Bohning Date: Tue, 17 Dec 2024 08:39:26 -0800 Subject: [PATCH] DAOS-16889 build: fix finding protobuf (#15625) Add a requirement to protobufc for building daos control binaries. Signed-off-by: Dalton Bohning --- src/control/SConscript | 1 + 1 file changed, 1 insertion(+) diff --git a/src/control/SConscript b/src/control/SConscript index 17b654f162d..e70247b4c7d 100644 --- a/src/control/SConscript +++ b/src/control/SConscript @@ -140,6 +140,7 @@ def scons(): # Sets CGO_LDFLAGS for rpath options denv.d_add_rpaths("..", True, True) + denv.require('protobufc') denv.AppendENVPath("CGO_CFLAGS", denv.subst("$_CPPINCFLAGS"), sep=" ") if prereqs.client_requested(): install_go_bin(denv, "daos_agent")