diff options
author | yang-g <yangg@google.com> | 2016-06-13 15:31:27 -0700 |
---|---|---|
committer | yang-g <yangg@google.com> | 2016-06-13 15:31:27 -0700 |
commit | 46f4a681d255bf8352a0a9622e1c59a24ba30d08 (patch) | |
tree | 85cfdc8815ce5a41a77c6854d49a3360535b6e9a /test | |
parent | a011572c8171cad96c3d630987afc8782883068c (diff) |
minor fixes
Diffstat (limited to 'test')
-rwxr-xr-x | test/distrib/cpp/run_distrib_test.sh | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/test/distrib/cpp/run_distrib_test.sh b/test/distrib/cpp/run_distrib_test.sh index dfe9867a60..bc84b84b8f 100755 --- a/test/distrib/cpp/run_distrib_test.sh +++ b/test/distrib/cpp/run_distrib_test.sh @@ -30,13 +30,13 @@ set -ex -git clone $EXTERNAL_GIT_ROOT -cd grpc && git submodule update --init +git clone --recursive $EXTERNAL_GIT_ROOT +cd grpc cd third_party/protobuf && ./autogen.sh && \ -./configure && make -j12 && make check && make install && ldconfig +./configure && make -j4 && make check && make install && ldconfig -cd ../.. && make -j12 && make install +cd ../.. && make -j4 && make install cd examples/cpp/helloworld |