diff options
-rwxr-xr-x | tools/make_linux_package.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/make_linux_package.sh b/tools/make_linux_package.sh index 1402f3d3..aea1c567 100755 --- a/tools/make_linux_package.sh +++ b/tools/make_linux_package.sh @@ -43,7 +43,7 @@ EOF chmod +x $DEST/generator-bin/protoc # Remove debugging symbols to reduce size of package -( cd $DEST/generator-bin; strip *.so ) +( cd $DEST/generator-bin; strip *.so *.so.* ) # Tar it all up ( cd dist; tar -czf $VERSION.tar.gz $VERSION ) |