Skip to content

Commit

Permalink
Remove a few system libraries from sparkle applications.
Browse files Browse the repository at this point in the history
  • Loading branch information
facundominguez committed Jun 22, 2018
1 parent a2b8f9f commit 1d1e88d
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions sparkle.bzl
Original file line number Diff line number Diff line change
Expand Up @@ -10,12 +10,23 @@ def sparkle_package(name, src, **kwargs):
srcs = [src],
outzip = "sparkle-app.zip",
excludes = [
"ld\.so.*",
"ld-linux\.so.*",
"ld-linux-x86-64\.so.*",
"libgcc_s\.so.*",
"libc\.so.*",
"libcrypt\.so.*",
"libdl\.so.*",
"libjava\.so.*",
"libjli\.so.*",
"libjvm\.so.*",
"libm\.so.*",
"libpthread\.so.*",
"librt\.so.*",
"libresolv\.so.*",
"libstdc++\.so.*",
"libutil\.so.*",
"libz\.so.*",
],
**kwargs
)
Expand Down

0 comments on commit 1d1e88d

Please sign in to comment.