https://bugzilla.redhat.com/show_bug.cgi?id=1317385
Akira TAGOH tagoh@redhat.com changed:
What |Removed |Added ---------------------------------------------------------------------------- CC| |jonathan@jonmasters.org, | |lnykryn@redhat.com, | |zbyszek@in.waw.pl Component|fonts-tweak-tool |initscripts Assignee|tagoh@redhat.com |lnykryn@redhat.com
--- Comment #1 from Akira TAGOH tagoh@redhat.com --- .i18n file is usually loaded from both scripts of /etc/profile.d/lang.sh and /etc/profile.d/lang.csh and it has to be portable. adding "export key=val" thing into .i18n breaks things on csh. so adding similar thing of the following line in /etc/profile.d/lang.csh may be required for lang.sh as well:
if ( -f "$HOME/.i18n" ) then eval `sed -ne 's|^[[:blank:]]*([^#=]{1,})=([^=]*)|setenv \1 \2;|p' "$HOME/.i18n"` set sourced=1 endif