From da89846a2199017355537a972119c38c7ea1c93b Mon Sep 17 00:00:00 2001 From: John Andersen Date: Mon, 4 Mar 2019 10:25:08 -0800 Subject: [PATCH] [tpm2-tss] Fix tpm2-tss build (#2204) New checks were added to configure which require that the GEN_FUZZ environment variable be set during both the bootstrap and configure scripts. Fixes: #2203 Signed-off-by: John Andersen --- projects/tpm2-tss/build.sh | 4 +++- projects/tpm2-tss/project.yaml | 2 ++ 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/projects/tpm2-tss/build.sh b/projects/tpm2-tss/build.sh index 53524b4b6..f120a2941 100644 --- a/projects/tpm2-tss/build.sh +++ b/projects/tpm2-tss/build.sh @@ -19,7 +19,9 @@ cd $SRC/tpm2-tss/ export LD_LIBRARY_PATH=/usr/local/bin -GEN_FUZZ=1 ./bootstrap +export GEN_FUZZ=1 + +./bootstrap ./configure \ CC=clang \ CXX=clang++ \ diff --git a/projects/tpm2-tss/project.yaml b/projects/tpm2-tss/project.yaml index c7061578c..20cd03167 100644 --- a/projects/tpm2-tss/project.yaml +++ b/projects/tpm2-tss/project.yaml @@ -1,5 +1,7 @@ homepage: "https://github.com/tpm2-software/tpm2-tss" primary_contact: "tadeusz.struk@intel.com" +auto_ccs: + - "john.s.andersen@intel.com" sanitizers: - address - memory