diff options
Diffstat (limited to 'tools')
-rwxr-xr-x | tools/make_linux_package.sh | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/tools/make_linux_package.sh b/tools/make_linux_package.sh index 332c281b..6598936a 100755 --- a/tools/make_linux_package.sh +++ b/tools/make_linux_package.sh @@ -31,7 +31,8 @@ rm $DEST/generator/protoc-gen-nanopb.py # Package the protoc compiler cp `which protoc` $DEST/generator-bin/protoc.bin LIBPROTOC=$(ldd `which protoc` | grep -o '/.*libprotoc[^ ]*') -cp $LIBPROTOC $DEST/generator-bin/ +LIBPROTOBUF=$(ldd `which protoc` | grep -o '/.*libprotobuf[^ ]*') +cp $LIBPROTOC $LIBPROTOBUF $DEST/generator-bin/ cat > $DEST/generator-bin/protoc << EOF #!/bin/bash SCRIPTDIR=\$(dirname "\$0") |