aboutsummaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
authorNadia Holmquist Pedersen <nadia@nhp.sh>2022-05-16 18:09:39 +0200
committerNadia Holmquist Pedersen <nadia@nhp.sh>2022-05-16 18:09:39 +0200
commit7f4f17de6328aadba9849b71bd02af97ee3c7f46 (patch)
tree5cdc9ff1b3cd6926fdd1f17db9ce601265433cf9 /tools
parent4cc34121b0db2cf77541014271af8d79fed35f26 (diff)
macOS: fix bundling on Monterey
The behavior of flags for strip changed exactly like the man page warned it would. Oops.
Diffstat (limited to 'tools')
-rwxr-xr-xtools/mac-libs.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/mac-libs.rb b/tools/mac-libs.rb
index 4d57c61..64b02b9 100755
--- a/tools/mac-libs.rb
+++ b/tools/mac-libs.rb
@@ -97,7 +97,7 @@ def install_name_tool(exec, action, path1, path2 = nil)
end
def strip(lib)
- out, _ = Open3.capture2("strip", "-SNTx", lib)
+ out, _ = Open3.capture2("strip", "-Sx", lib)
print out
end