extend/os/mac/keg_relocate.rb: override egrep_args

This commit is contained in:
danielnachun 2022-02-10 22:24:26 -08:00
parent 84de30b653
commit ebea3175f1
No known key found for this signature in database
GPG Key ID: 7343CCAD07E2D0FB

View File

@ -183,4 +183,14 @@ class Keg
# it's wrong. -O is a BSD-grep-only option.
"-lrO"
end
def egrep_args
grep_bin = "egrep"
grep_args = recursive_fgrep_args
[grep_bin, grep_args]
end
def codesign_patched_binary(binary_file)
apply_ad_hoc_signature(binary_file)
end
end