Skip to content

Commit ac8fffd

Browse files
committed
Fixed packaging issue
1 parent 9807dbc commit ac8fffd

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

build_grpc.sh

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -172,13 +172,13 @@ function create_grpc_package {
172172
print_info "Preparing package structure '$PCKGDIR'"
173173

174174
mkdir -p $PCKGDIR/bin || exit_failure
175-
cp release/grpc_*_plugin $PCKGDIR/bin/
176-
cp release/third_party/protobuf/protoc $PCKGDIR/bin/
175+
cp grpc_*_plugin $PCKGDIR/bin/
176+
cp third_party/protobuf/protoc $PCKGDIR/bin/
177177

178178
cp -R $GRPCDIR/include/ $PCKGDIR/include/ || exit_failure
179179
# add protobud includes + compiler
180-
mv release/$PROTOBUF_INSTALLDIR/include/* $PCKGDIR/include/ || exit_failure
181-
mv release/$PROTOBUF_INSTALLDIR/bin/* $PCKGDIR/bin/ || exit_failure
180+
mv $PROTOBUF_INSTALLDIR/include/* $PCKGDIR/include/ || exit_failure
181+
mv $PROTOBUF_INSTALLDIR/bin/* $PCKGDIR/bin/ || exit_failure
182182

183183
mkdir -p $PCKGDIR/lib
184184
cp ./*.a $PCKGDIR/lib/

0 commit comments

Comments
 (0)