macOS: fix bundling on Monterey

The behavior of flags for strip changed exactly like the man page warned
it would. Oops.
This commit is contained in:
Nadia Holmquist Pedersen 2022-05-16 18:09:39 +02:00
parent 4cc34121b0
commit 7f4f17de63
1 changed files with 1 additions and 1 deletions

View File

@ -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