-
Notifications
You must be signed in to change notification settings - Fork 87
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
(CAT-1505) Ensure openssl-3.0 headers are not overwritten by openssl-…
…1.1.1 When installing openssl-1.1.1 in order to support ruby-2.7.8 the previously installed openssl-3.0 headers are being overwritten. This pr moves them out of the way while ruby-2.7.8 is being set up and then moves them back once it is done.
- Loading branch information
1 parent
3daed22
commit b82d685
Showing
3 changed files
with
13 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
component "post-additional-rubies" do |pkg, settings, platform| | ||
pkg.build do | ||
[ "rm -rf #{settings[:prefix]}/include/openssl", | ||
"mv /tmp/openssl #{settings[:prefix]}/include/openssl"] | ||
end | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
component "pre-additional-rubies" do |pkg, settings, platform| | ||
pkg.build do | ||
["mv #{settings[:prefix]}/include/openssl /tmp/openssl"] | ||
end | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters