Skip to content

Commit 8519e49

Browse files
authored
openssl: skip patch Configurations when version <= 1.1.0 (#8282) (#8390)
1 parent 5220256 commit 8519e49

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

packages/o/openssl/configure/patch.lua

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,9 @@
11
function _fix_overlong_make_recipe(package)
2+
-- Skip when OpenSSL version <= 1.1.0 as they don't have the `Configurations` directory
3+
-- see: https://github.com/xmake-io/xmake-repo/issues/8282
4+
if package:version():le("1.1.0") then
5+
return
6+
end
27
-- In the MSYS environment, the make recipe can be too long to execute.
38
-- This patch is adapted from OpenSSL 3.
49
-- For more details, see: https://github.com/openssl/openssl/issues/12116

0 commit comments

Comments
 (0)