This is an automated email from the ASF dual-hosted git repository.
alexey pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/kudu.git
The following commit(s) were added to refs/heads/master by this push:
new c2e3efd [thirparty] fix TSAN builds after adding jwt-cpp
c2e3efd is described below
commit c2e3efdcefd1de65d805749ba3198adfe9dba79d
Author: Alexey Serbin <[email protected]>
AuthorDate: Sat Jan 29 09:55:46 2022 -0800
[thirparty] fix TSAN builds after adding jwt-cpp
Changelist [1] had an issue of not installing the jwt-cpp headers
in a TSAN build. This patch fixes that deficiency.
This is a follow-up to 6f3087ba6bb16ceb8c9904246761524373292489.
[1] https://gerrit.cloudera.org/#/c/18103/
Change-Id: Idead6b622d05b39148977caacea14818fe688548
Reviewed-on: http://gerrit.cloudera.org:8080/18181
Tested-by: Alexey Serbin <[email protected]>
Reviewed-by: Andrew Wong <[email protected]>
---
thirdparty/build-thirdparty.sh | 4 ++++
1 file changed, 4 insertions(+)
diff --git a/thirdparty/build-thirdparty.sh b/thirdparty/build-thirdparty.sh
index 0f70d1c..b1c7bd4 100755
--- a/thirdparty/build-thirdparty.sh
+++ b/thirdparty/build-thirdparty.sh
@@ -616,6 +616,10 @@ if [ -n "$F_TSAN" -o -n "$F_OATPP_SWAGGER" ]; then
build_oatpp_swagger
fi
+if [ -n "$F_TSAN" -o -n "$F_JWT_CPP" ]; then
+ build_jwt_cpp
+fi
+
restore_env
finish