Skip to content

Commit 58f77a6

Browse files
authored
Merge pull request #208554 from Homebrew/visp-postinstall-2
visp: update postinstall to support API
2 parents 52dc0fa + b7249ee commit 58f77a6

File tree

1 file changed

+8
-2
lines changed

1 file changed

+8
-2
lines changed

Formula/v/visp.rb

+8-2
Original file line numberDiff line numberDiff line change
@@ -154,13 +154,19 @@ def post_install
154154
# Replace SDK paths in bottle when pouring on different OS version than bottle OS.
155155
# This avoids error like https://github.com/orgs/Homebrew/discussions/5853
156156
# TODO: Consider handling this in brew, e.g. as part of keg cleaner or bottle relocation
157-
if OS.mac? && Tab.for_formula(self).poured_from_bottle && MacOS.version != bottle&.tag&.to_macos_version
157+
if OS.mac? && (tab = Tab.for_formula(self)).poured_from_bottle
158+
bottle_os = bottle&.tag&.to_macos_version
159+
if bottle_os.nil? && (os_version = tab.built_on.fetch("os_version", "")[/\d+(?:\.\d+)*$/])
160+
bottle_os = MacOSVersion.new(os_version).strip_patch
161+
end
162+
return if bottle_os.nil? || MacOS.version == bottle_os
163+
158164
sdk_path_files = [
159165
lib/"cmake/visp/VISPConfig.cmake",
160166
lib/"cmake/visp/VISPModules.cmake",
161167
lib/"pkgconfig/visp.pc",
162168
]
163-
bottle_sdk_path = MacOS.sdk_for_formula(self, bottle&.tag&.to_macos_version).path
169+
bottle_sdk_path = MacOS.sdk_for_formula(self, bottle_os).path
164170
inreplace sdk_path_files, bottle_sdk_path, MacOS.sdk_for_formula(self).path, audit_result: false
165171
end
166172
end

0 commit comments

Comments
 (0)