Skip to content

Commit

Permalink
- startup scripts: if RC_LANG is not set, use en_US as default
Browse files Browse the repository at this point in the history
  (bnc#815265)
- 2.24.4
  • Loading branch information
jsuchome committed May 13, 2013
1 parent bbbb358 commit 4810ea4
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 1 deletion.
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
2.24.3
2.24.4
7 changes: 7 additions & 0 deletions package/yast2-installation.changes
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
-------------------------------------------------------------------
Mon May 13 09:40:15 CEST 2013 - jsuchome@suse.cz

- startup scripts: if RC_LANG is not set, use en_US as default
(bnc#815265)
- 2.24.4

-------------------------------------------------------------------
Fri May 03 12:18:43 CEST 2013 - aschnell@suse.de

Expand Down
5 changes: 5 additions & 0 deletions startup/common/language.sh
Original file line number Diff line number Diff line change
Expand Up @@ -83,6 +83,11 @@ function set_language_cont () {
# returns an appropriate exit code. This code only
# works in second stage (continue)
# ---
if [ -z "$RC_LANG" ]; then
log "\tRC_LANG not set, using en_US as default..."
export RC_LANG=en_US
fi

if [ ! -x /bin/testutf8 ];then
return
fi
Expand Down

0 comments on commit 4810ea4

Please sign in to comment.