You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@trafficserver.apache.org by du...@apache.org on 2023/10/16 22:23:34 UTC

[trafficserver] branch master updated: make build_h3_tools.sh more reliable (#10561)

This is an automated email from the ASF dual-hosted git repository.

duke8253 pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/trafficserver.git


The following commit(s) were added to refs/heads/master by this push:
     new fffcfb2cda make build_h3_tools.sh more reliable (#10561)
fffcfb2cda is described below

commit fffcfb2cda7e918175171ce86939c6361722e1b1
Author: Fei Deng <fe...@yahooinc.com>
AuthorDate: Mon Oct 16 18:23:28 2023 -0400

    make build_h3_tools.sh more reliable (#10561)
---
 tools/build_h3_tools.sh | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/tools/build_h3_tools.sh b/tools/build_h3_tools.sh
index 5331bfa6d6..01dbc0f4c1 100755
--- a/tools/build_h3_tools.sh
+++ b/tools/build_h3_tools.sh
@@ -32,7 +32,7 @@ OPENSSL_BRANCH=${OPENSSL_BRANCH:-"openssl-3.1.2+quic"}
 
 # Set these, if desired, to change these to your preferred installation
 # directory
-BASE=${BASE:-"/opt"}
+BASE=${BASE:-"/opt/ats_h3_tools"}
 OPENSSL_BASE=${OPENSSL_BASE:-"${BASE}/openssl-quic"}
 OPENSSL_PREFIX=${OPENSSL_PREFIX:-"${OPENSSL_BASE}-${OPENSSL_BRANCH}"}
 MAKE="make"
@@ -136,6 +136,7 @@ cmake \
 cmake --build build -j ${num_threads}
 sudo cmake --install build
 sudo chmod -R a+rX ${BASE}
+cd ..
 
 # Build quiche
 # Steps borrowed from: https://github.com/apache/trafficserver-ci/blob/main/docker/rockylinux8/Dockerfile