You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
So I have a terminal launched from Flex Launcher for debugging and I kept getting errors from perl on launch about improper locale settings, namely LANG=en
I'm on Arch and it's a fresh install, en_US.UTF-8
>>> cat /etc/locale.conf
LANG=en_US.UTF-8
If I re-source that locale conf or just export LANG=en_US.UTF-8 the problem is resolved for that terminal session.
If I SSH into the machine or launch the terminal using rofi, the LANG environment variable is properly set to en_US.UTF-8
I'm not sure how this issue would present in other applications but figured this was an unintentional bug that should be reported
The text was updated successfully, but these errors were encountered:
Flex Launcher doesn't modify the LANG environment variable. It could be SDL, but I doubt it.
I suspect that the environment variables are not being transferred to the new child process. Currently the POSIX function execvp is used to execute the child processes. execve may be a better choice because it allows the caller to specify an array of environment variables. I can look into this later to confirm whether or not this is the cause of the issue.
So I have a terminal launched from Flex Launcher for debugging and I kept getting errors from perl on launch about improper locale settings, namely
LANG=en
I'm on Arch and it's a fresh install, en_US.UTF-8
If I re-source that locale conf or just export LANG=en_US.UTF-8 the problem is resolved for that terminal session.
If I SSH into the machine or launch the terminal using
rofi
, theLANG
environment variable is properly set toen_US.UTF-8
I'm not sure how this issue would present in other applications but figured this was an unintentional bug that should be reported
The text was updated successfully, but these errors were encountered: