Code Review
/
apps
/
agl-service-can-low-level.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
review
|
tree
raw
|
patch
| inline |
side by side
(parent:
b836ac2
)
Include libprotobuf in linux binary package.
author
Petteri Aimonen
<jpa@git.mail.kapsi.fi>
Sun, 22 Feb 2015 13:28:26 +0000
(15:28 +0200)
committer
Petteri Aimonen
<jpa@git.mail.kapsi.fi>
Sun, 22 Feb 2015 13:28:26 +0000
(15:28 +0200)
Previously this got included by bbfreeze, but apparently no more.
Update issue 146
Status: FixedInGit
tools/make_linux_package.sh
patch
|
blob
|
history
diff --git
a/tools/make_linux_package.sh
b/tools/make_linux_package.sh
index
332c281
..
6598936
100755
(executable)
--- 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")