Install grpc and protobuf when building on Mac. Since DYLD_LIBRARY_PATH cannot be passed to nginx configure script from El Cap.

This commit is contained in:
Feng Li 2016-12-09 18:16:56 -08:00
parent 5541c0e634
commit ca9e4d16ae
1 changed files with 2 additions and 1 deletions

View File

@ -2,7 +2,8 @@
make clean
cd third_party/protobuf \
&& ./autogen.sh \
&& ./configure && make install -j8 \
&& ./configure
&& make install -j8 \
&& cd ../..
cd third_party/grpc \
&& make install -j8 \