File tree 1 file changed +8
-2
lines changed
1 file changed +8
-2
lines changed Original file line number Diff line number Diff line change @@ -154,13 +154,19 @@ def post_install
154
154
# Replace SDK paths in bottle when pouring on different OS version than bottle OS.
155
155
# This avoids error like https://github.com/orgs/Homebrew/discussions/5853
156
156
# 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
+
158
164
sdk_path_files = [
159
165
lib /"cmake/visp/VISPConfig.cmake" ,
160
166
lib /"cmake/visp/VISPModules.cmake" ,
161
167
lib /"pkgconfig/visp.pc" ,
162
168
]
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
164
170
inreplace sdk_path_files , bottle_sdk_path , MacOS . sdk_for_formula ( self ) . path , audit_result : false
165
171
end
166
172
end
You can’t perform that action at this time.
0 commit comments