Skip to content

Commit

Permalink
attestation-agent: default to ttrpc in Makefile
Browse files Browse the repository at this point in the history
CDH already does this and ASR doesn't work with GRPC. This change
shouldn't break any existing invocations of the makefile with
ttrpc=true, only builds that rely on grpc being implicitly picked. Due
to the CDH's default and ASR being ttrpc-only I don't think we break
anything downstream.

Signed-off-by: Magnus Kulke <[email protected]>
  • Loading branch information
mkulke committed Sep 27, 2024
1 parent 49476b5 commit 06def6e
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions attestation-agent/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -37,14 +37,14 @@ ifeq ($(ARCH), $(filter $(ARCH), s390x powerpc64le))
OPENSSL=1
endif

ifeq ($(ttrpc), true)
binary = --bin ttrpc-aa
features += bin,ttrpc
binary_name = ttrpc-aa
else
ifeq ($(ttrpc), false)
binary = --bin grpc-aa
features += bin,grpc
binary_name = grpc-aa
else
binary = --bin ttrpc-aa
features += bin,ttrpc
binary_name = ttrpc-aa
endif

ifdef ATTESTER
Expand Down

0 comments on commit 06def6e

Please sign in to comment.