aboutsummaryrefslogtreecommitdiffstats
path: root/bootsplash.spec
diff options
context:
space:
mode:
authorFlorent Villard <warly@mandriva.com>2004-08-31 08:37:16 +0000
committerFlorent Villard <warly@mandriva.com>2004-08-31 08:37:16 +0000
commite9f3128412957b0025bf13ef2594ddc6b3c32be6 (patch)
tree15e09c61276e2d9de2f01bc60a12593ecc3fa2d7 /bootsplash.spec
parentbdbfcf19a5896cf99890b97f7c6b0758785240d8 (diff)
downloadbootsplash-e9f3128412957b0025bf13ef2594ddc6b3c32be6.tar
bootsplash-e9f3128412957b0025bf13ef2594ddc6b3c32be6.tar.gz
bootsplash-e9f3128412957b0025bf13ef2594ddc6b3c32be6.tar.bz2
bootsplash-e9f3128412957b0025bf13ef2594ddc6b3c32be6.tar.xz
bootsplash-e9f3128412957b0025bf13ef2594ddc6b3c32be6.zip
Reset the screen if non latin1 font is used with /usr on a separate partition
Diffstat (limited to 'bootsplash.spec')
-rw-r--r--bootsplash.spec11
1 files changed, 10 insertions, 1 deletions
diff --git a/bootsplash.spec b/bootsplash.spec
index fba0b6d..0ed6bd0 100644
--- a/bootsplash.spec
+++ b/bootsplash.spec
@@ -1,5 +1,5 @@
%define name bootsplash
-%define version 2.1.9
+%define version 2.1.11
%define release 1mdk
%define _bootdir /boot
@@ -61,8 +61,14 @@ for i in `echo $LANGUAGE:$LC_ALL:$LC_COLLATE:$LANG:C | tr ':' ' '`
do
if [ -r %{_datadir}/locale/$i/LC_MESSAGES/bootsplash.mo ]; then
mkdir -p /etc/locale/$i/LC_MESSAGES/
+ cp %{_datadir}/locale/$i/LC_MESSAGES/SYS_LC_MESSAGES \
+ /etc/locale/$i/LC_MESSAGES/
cp %{_datadir}/locale/$i/LC_MESSAGES/bootsplash.mo \
/etc/locale/$i/LC_MESSAGES/
+ for f in LC_ADDRESS LC_COLLATE LC_CTYPE LC_IDENTIFICATION LC_MEASUREMENT LC_MONETARY LC_NAME LC_NUMERIC LC_PAPER LC_TELEPHONE LC_TIME;
+ do
+ cp -L %{_datadir}/locale/$i/$f /etc/locale/$i/$f
+ done
break
fi
done
@@ -85,6 +91,9 @@ rm -rf $RPM_BUILD_ROOT
%{_bindir}/*
%changelog
+* Tue Aug 31 2004 Warly <warly@mandrakesoft.com> 2.1.11-1mdk
+- refresh the screen in non latin1 font with a separate /usr partition
+
* Fri Jul 16 2004 Warly <warly@mandrakesoft.com> 2.1.9-1mdk
- fix rendering for UTF-8 mo (pablo)