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:
parent
4cc34121b0
commit
7f4f17de63
|
@ -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
|
||||
|
||||
|
|
Loading…
Reference in New Issue