This is an automated email from the ASF dual-hosted git repository.
fokko pushed a commit to branch branch-1.11
in repository https://gitbox.apache.org/repos/asf/avro.git
The following commit(s) were added to refs/heads/branch-1.11 by this push:
new 5db6339eb Remove parser copy on c++ build (#3006)
5db6339eb is described below
commit 5db6339eb7784be07b01d439b19d6d61b5489cb3
Author: JB Onofré <[email protected]>
AuthorDate: Mon Jul 8 18:32:37 2024 +0200
Remove parser copy on c++ build (#3006)
---
lang/c++/build.sh | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/lang/c++/build.sh b/lang/c++/build.sh
index 0c7fd6bbc..aa8c60dfe 100755
--- a/lang/c++/build.sh
+++ b/lang/c++/build.sh
@@ -15,6 +15,7 @@
# See the License for the specific language governing permissions and
# limitations under the License.
+set -x
set -e # exit on error
function usage {
@@ -59,7 +60,7 @@ function do_dist() {
rm -rf $BUILD_CPP/
mkdir -p $BUILD_CPP
cp -r api AUTHORS build.sh CMakeLists.txt ChangeLog \
- LICENSE NOTICE impl jsonschemas NEWS parser README test examples \
+ LICENSE NOTICE impl jsonschemas NEWS README test examples \
$BUILD_CPP
find $BUILD_CPP -name '.svn' | xargs rm -rf
cp ../../share/VERSION.txt $BUILD_CPP