Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nanopb/nanopb.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
authorPetteri Aimonen <jpa@git.mail.kapsi.fi>2021-06-05 13:27:38 +0300
committerPetteri Aimonen <jpa@git.mail.kapsi.fi>2021-06-05 13:27:38 +0300
commit3580a3d1e073109f1c356366a2f2d841949e580f (patch)
tree3e2d238c1d1eefe1ca25afcae5b526ca4e85edb7 /tools
parent773d98714a8e9f18e0b75335735a95dc2b1c278f (diff)
Attempt to fix Linux package build error with new versions of python-protobuf
Diffstat (limited to 'tools')
-rwxr-xr-xtools/make_linux_package.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/make_linux_package.sh b/tools/make_linux_package.sh
index 5509cbb..dd22b0d 100755
--- a/tools/make_linux_package.sh
+++ b/tools/make_linux_package.sh
@@ -37,7 +37,7 @@ rm -rf $DEST/generator/dist $DEST/generator/build $DEST/generator/nanopb_generat
cp $DEST/generator-bin/nanopb_generator $DEST/generator-bin/protoc-gen-nanopb
# Remove debugging symbols to reduce size of package
-( cd $DEST/generator-bin; strip *.so *.so.* )
+( cd $DEST/generator-bin; strip *.so* )
# Tar it all up
( cd dist; tar -czf $VERSION.tar.gz $VERSION )