Browse Source

fix Makefile to use protoc3

pull/34/head
Rossen Georgiev 9 years ago
parent
commit
c5b5741e46
  1. 2
      Makefile

2
Makefile

@ -65,7 +65,7 @@ pb_fetch:
pb_compile:
for filepath in `ls ./protobufs/*.proto`; do \
./tools/protoc3 --python_out ./steam/protobufs/ --proto_path=./tools/protobuf/src --proto_path=./protobufs "$$filepath"; \
protoc3 --python_out ./steam/protobufs/ --proto_path=./tools/protobuf/src --proto_path=./protobufs "$$filepath"; \
done;
sed -i 's/^import /import steam.protobufs./' steam/protobufs/*_pb2.py

Loading…
Cancel
Save