From 7c5d1c607feffcd0cc38c4720f08ec4122795b64 Mon Sep 17 00:00:00 2001 From: Cristian Ferretti Date: Tue, 17 Sep 2024 17:32:13 -0400 Subject: [PATCH] Improve the cpp-client/README.md with a suggestion from Al. --- cpp-client/README.md | 2 +- cpp-client/build-dependencies.sh | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/cpp-client/README.md b/cpp-client/README.md index c815e042b46..bff05cf652e 100644 --- a/cpp-client/README.md +++ b/cpp-client/README.md @@ -80,7 +80,7 @@ connect a server when you want to run them. export DHCPP=$HOME/dhcpp # If the directory already exists from a previous attempt, ensure is clean/empty mkdir -p $DHCPP - cp build-dependencies.sh $DHCPP + cp $DHSRC/build-dependencies.sh $DHCPP cd $DHCPP # Maybe edit build-dependencies.sh to reflect choices of build tools and build target, if you # want anything different than defaults; defaults are tested to work, diff --git a/cpp-client/build-dependencies.sh b/cpp-client/build-dependencies.sh index 2c8e8057a88..4b29f1f97e7 100755 --- a/cpp-client/build-dependencies.sh +++ b/cpp-client/build-dependencies.sh @@ -562,7 +562,7 @@ if [ "$CLONE_PROTOBUF" = "yes" ]; then echo echo "*** Cloning protobuf" cd $SRC - # Previously used version: v25.4 + # Previously used version: v25.3 git clone $GIT_FLAGS -b v28.1 --depth 1 "${GITHUB_BASE_URL}/protocolbuffers/protobuf.git" echo "*** Cloning protobuf DONE" fi