From: Petteri Aimonen Date: Sun, 22 Feb 2015 13:28:26 +0000 (+0200) Subject: Include libprotobuf in linux binary package. X-Git-Tag: 5.0.2~186^2~150 X-Git-Url: https://gerrit.automotivelinux.org/gerrit/gitweb?a=commitdiff_plain;h=651e97456b24524a73070c6ea1c9c2696c02bd53;p=apps%2Fagl-service-can-low-level.git Include libprotobuf in linux binary package. Previously this got included by bbfreeze, but apparently no more. Update issue 146 Status: FixedInGit --- 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")