Attempt to fix Linux package build error with new versions of python-protobuf
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 @@
 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 )