-
Notifications
You must be signed in to change notification settings - Fork 27
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[python] build with ucs4 #191
Conversation
config/software/python.rb
Outdated
@@ -37,6 +37,7 @@ | |||
} | |||
|
|||
python_configure = ["./configure", | |||
"--enable-unicode=ucs4", |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
can we do this on Linux only? The default python on macOS is still built with ucs2
, and the homebrew-provided python too, see Homebrew/homebrew-core#12510
@@ -40,10 +40,12 @@ | |||
"--enable-universalsdk=/", | |||
"--prefix=#{install_dir}/embedded"] | |||
|
|||
if ohai["platform_family"] == "mac_os_x" | |||
if mac_os_x? |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
we have this in multiple recipes though...
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
ok this one is actually provided by chef-sugar
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
in the future we should probably get rid of our lib/ostools.rb
and use the sugar-provided stuff directly instead
No description provided.