Login
[x]
Log in using an account from:
Fedora Account System
Red Hat Associate
Red Hat Customer
Or login using a Red Hat Bugzilla account
Forgot Password
Login:
Hide Forgot
Create an Account
Red Hat Bugzilla – Attachment 303769 Details for
Bug 372151
/etc/sysconfig/i18n locale settings not propagating into X session
[?]
New
Simple Search
Advanced Search
My Links
Browse
Requests
Reports
Current State
Search
Tabular reports
Graphical reports
Duplicates
Other Reports
User Changes
Plotly Reports
Bug Status
Bug Severity
Non-Defaults
|
Product Dashboard
Help
Page Help!
Bug Writing Guidelines
What's new
Browser Support Policy
5.0.4.rh83 Release notes
FAQ
Guides index
User guide
Web Services
Contact
Legal
This site requires JavaScript to be enabled to function correctly, please enable it.
[patch]
Handle all exportable variables
lang.sh.patch (text/plain), 2.60 KB, created by
Jarkko
on 2008-04-25 10:02:36 UTC
(
hide
)
Description:
Handle all exportable variables
Filename:
MIME Type:
Creator:
Jarkko
Created:
2008-04-25 10:02:36 UTC
Size:
2.60 KB
patch
obsolete
>--- lang.sh.orig 2008-04-24 14:10:36.000000000 +0300 >+++ lang.sh 2008-04-25 12:56:45.000000000 +0300 >@@ -2,15 +2,112 @@ > > sourced=0 > >-saved_lang="$LANG" >+saved_LANG="$LANG" >+saved_LC_ADDRESS="$LC_ADDRESS" >+saved_LC_CTYPE="$LC_CTYPE" >+saved_LC_COLLATE="$LC_COLLATE" >+saved_LC_IDENTIFICATION="$LC_IDENTIFICATION" >+saved_LC_MEASUREMENT="$LC_MEASUREMENT" >+saved_LC_MESSAGES="$LC_MESSAGES" >+saved_LC_MONETARY="$LC_MONETARY" >+saved_LC_NAME="$LC_NAME" >+saved_LC_NUMERIC="$LC_NUMERIC" >+saved_LC_PAPER="$LC_PAPER" >+saved_LC_TELEPHONE="$LC_TELEPHONE" >+saved_LC_TIME="$LC_TIME" >+saved_LC_ALL="$LC_ALL" >+saved_LANGUAGE="$LANGUAGE" >+saved_LINGUAS="$LINGUAS" >+saved__XKB_CHARSET="$_XKB_CHARSET" >+ > for langfile in /etc/sysconfig/i18n $HOME/.i18n ; do > [ -f $langfile ] && . $langfile && sourced=1 > done > >-if [ -n "$saved_lang" ]; then >- LANG="$saved_lang" >+if [ -n "$saved_LANG" ]; then >+ LANG="$saved_LANG" >+fi >+unset saved_LANG >+ >+if [ -n "$saved_LC_ADDRESS" ]; then >+ LC_ADDRESS="$saved_LC_ADDRESS" >+fi >+unset saved_LC_ADDRESS >+ >+if [ -n "$saved_LC_CTYPE" ]; then >+ LC_CTYPE="$saved_LC_CTYPE" >+fi >+unset saved_LC_CTYPE >+ >+if [ -n "$saved_LC_COLLATE" ]; then >+ LC_COLLATE="$saved_LC_COLLATE" >+fi >+unset saved_LC_COLLATE >+ >+if [ -n "$saved_LC_IDENTIFICATION" ]; then >+ LC_IDENTIFICATION="$saved_LC_IDENTIFICATION" >+fi >+unset saved_LC_IDENTIFICATION >+ >+if [ -n "$saved_LC_MEASUREMENT" ]; then >+ LC_MEASUREMENT="$saved_LC_MEASUREMENT" >+fi >+unset saved_LC_MEASUREMENT >+ >+if [ -n "$saved_LC_MESSAGES" ]; then >+ LC_MESSAGES="$saved_LC_MESSAGES" >+fi >+unset saved_LC_MESSAGES >+ >+if [ -n "$saved_LC_MONETARY" ]; then >+ LC_MONETARY="$saved_LC_MONETARY" >+fi >+unset saved_LC_MONETARY >+ >+if [ -n "$saved_LC_NAME" ]; then >+ LC_NAME="$saved_LC_NAME" >+fi >+unset saved_LC_NAME >+ >+if [ -n "$saved_LC_NUMERIC" ]; then >+ LC_NUMERIC="$saved_LC_NUMERIC" >+fi >+unset saved_LC_NUMERIC >+ >+if [ -n "$saved_LC_PAPER" ]; then >+ LC_PAPER="$saved_LC_PAPER" >+fi >+unset saved_LC_PAPER >+ >+if [ -n "$saved_LC_TELEPHONE" ]; then >+ LC_TELEPHONE="$saved_LC_TELEPHONE" >+fi >+unset saved_LC_TELEPHONE >+ >+if [ -n "$saved_LC_TIME" ]; then >+ LC_TIME="$saved_LC_TIME" >+fi >+unset saved_LC_TIME >+ >+if [ -n "$saved_LC_ALL" ]; then >+ LC_ALL="$saved_LC_ALL" >+fi >+unset saved_LC_ALL >+ >+if [ -n "$saved_LANGUAGE" ]; then >+ LANGUAGE="$saved_LANGUAGE" >+fi >+unset saved_LANGUAGE >+ >+if [ -n "$saved_LINGUAS" ]; then >+ LINGUAS="$saved_LINGUAS" >+fi >+unset saved_LINGUAS >+ >+if [ -n "$saved__XKB_CHARSET" ]; then >+ _XKB_CHARSET="$saved__XKB_CHARSET" > fi >-unset saved_lang >+unset saved__XKB_CHARSET > > if [ "$sourced" = 1 ]; then > [ -n "$LANG" ] && export LANG || unset LANG
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Diff
Attachments on
bug 372151
:
252411
|
303357
|
303519
|
303769
|
303770
|
303782
|
304029
|
304034