Skip to content

Commit

Permalink
macOS: fix bundling on Monterey
Browse files Browse the repository at this point in the history
The behavior of flags for strip changed exactly like the man page warned
it would. Oops.
  • Loading branch information
nadiaholmquist committed May 16, 2022
1 parent 4cc3412 commit 7f4f17d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tools/mac-libs.rb
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down

0 comments on commit 7f4f17d

Please sign in to comment.