@@ -155,14 +155,25 @@ def post_install
155
155
# Replace SDK paths in bottle when pouring on different OS version than bottle OS.
156
156
# This avoids error like https://github.com/orgs/Homebrew/discussions/5853
157
157
# TODO: Consider handling this in brew, e.g. as part of keg cleaner or bottle relocation
158
- if OS . mac? && Tab . for_formula ( self ) . poured_from_bottle && MacOS . version != bottle &.tag &.to_macos_version
158
+ if OS . mac? && ( tab = Tab . for_formula ( self ) ) . poured_from_bottle
159
+ bottle_os = bottle &.tag &.to_macos_version
160
+ if bottle_os . nil? && ( os_version = tab . built_on . fetch ( "os_version" , "" ) [ /\d +(?:\. \d +)*$/ ] )
161
+ bottle_os = MacOSVersion . new ( os_version ) . strip_patch
162
+ end
163
+ return if bottle_os . nil? || MacOS . version == bottle_os
164
+
159
165
sdk_path_files = [
160
166
lib /"cmake/visp/VISPConfig.cmake" ,
161
167
lib /"cmake/visp/VISPModules.cmake" ,
162
168
lib /"pkgconfig/visp.pc" ,
163
169
]
164
- bottle_sdk_path = MacOS . sdk_for_formula ( self , bottle &.tag &.to_macos_version ) . path
165
- inreplace sdk_path_files , bottle_sdk_path , MacOS . sdk_for_formula ( self ) . path , audit_result : false
170
+ old = MacOS . sdk_for_formula ( self , bottle_os ) . path
171
+ new = MacOS . sdk_for_formula ( self ) . path
172
+ sdk_path_files . each do |sdk_path_file |
173
+ # NOTE: Should be `odebug` to match os/mac/keg.rb but brew postinstall doesn't support it
174
+ ohai "Changing SDK path in #{ sdk_path_file } " , " from #{ old } \n to #{ new } "
175
+ inreplace sdk_path_file , old , new , audit_result : false
176
+ end
166
177
end
167
178
end
168
179
0 commit comments