From 7df55c4fd3ee3ec0f6baa66b586f829f19daa0f8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bj=C3=B6rn=20Busse?= Date: Tue, 3 Nov 2020 17:59:28 +0100 Subject: [PATCH] Makefile: Fix compilation of protobuf files with newer protoc --- Makefile | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/Makefile b/Makefile index c6e85d4..080d831 100644 --- a/Makefile +++ b/Makefile @@ -6,15 +6,15 @@ all: -mkdir $(bindings_path) -git clone --depth 1 https://github.com/apache/hbase $(hbase_tmp_path) cd $(hbase_tmp_path)/hbase-protocol-shaded/src/main/protobuf; \ - protoc -I=/usr/local/include/ --proto_path=. --python_out=$(bindings_path) * + protoc -I=/usr/local/include/ --proto_path=. --python_out=$(bindings_path) *.proto cd $(hbase_tmp_path)/hbase-protocol-shaded/src/main/protobuf; \ - protoc -I=/usr/local/include/ --proto_path=. --python_out=$(bindings_path) client/* + protoc -I=/usr/local/include/ --proto_path=. --python_out=$(bindings_path) client/*.proto cd $(hbase_tmp_path)/hbase-protocol-shaded/src/main/protobuf; \ - protoc -I=/usr/local/include/ --proto_path=. --python_out=$(bindings_path) server/* + protoc -I=/usr/local/include/ --proto_path=. --python_out=$(bindings_path) server/*.proto cd $(hbase_tmp_path)/hbase-protocol-shaded/src/main/protobuf; \ - protoc -I=/usr/local/include/ --proto_path=. --python_out=$(bindings_path) server/io/* + protoc -I=/usr/local/include/ --proto_path=. --python_out=$(bindings_path) server/io/*.proto cd $(hbase_tmp_path)/hbase-protocol-shaded/src/main/protobuf; \ - protoc -I=/usr/local/include/ --proto_path=. --python_out=$(bindings_path) server/zookeeper/* + protoc -I=/usr/local/include/ --proto_path=. --python_out=$(bindings_path) server/zookeeper/*.proto clean: