Skip to content

Commit 3f63c96

Browse files
committed
Fix typo in Python 3 builds for Amazon Linux 2023
The command-line argument should be `--with-openssl`, not `--with-opensssl`. The typo was most likely ignored and did not seem to affect the build. Changelog: changed
1 parent 454718e commit 3f63c96

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

config/software/python3.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@
6565
with_openssl = ''
6666
if (ohai['platform'] =~ /^amzn/ || ohai['platform'] =~ /^amazon/) && (ohai['platform_version'] == "2023")
6767
patch source: 'custom-openssl.patch'
68-
with_openssl = "--with-opensssl=/usr/local/openssl"
68+
with_openssl = "--with-openssl=/usr/local/openssl"
6969
end
7070

7171
command ['./configure',

0 commit comments

Comments
 (0)