diff options
author | Ken Moffat <ken@linuxfromscratch.org> | 2006-03-29 21:02:45 +0000 |
---|---|---|
committer | Ken Moffat <ken@linuxfromscratch.org> | 2006-03-29 21:02:45 +0000 |
commit | 8cc086603a0658aeb2fcac57a08a808556313b59 (patch) | |
tree | 0f24b326ad271042411317b6e3b782c41c30df86 /chapter06/shadow.xml | |
parent | b6d990e214462505929335ac3f2b7c7cfe5b46b4 (diff) |
Apply r7469,r7471 from udev_update branch to trunk.
git-svn-id: http://svn.linuxfromscratch.org/LFS/trunk/BOOK@7472 4aa44e1e-78dd-0310-a6d2-fbcd4c07a689
Diffstat (limited to 'chapter06/shadow.xml')
-rw-r--r-- | chapter06/shadow.xml | 20 |
1 files changed, 18 insertions, 2 deletions
diff --git a/chapter06/shadow.xml b/chapter06/shadow.xml index c5a5ebc9c..2fc671da9 100644 --- a/chapter06/shadow.xml +++ b/chapter06/shadow.xml @@ -25,8 +25,8 @@ <segtitle>&diskspace;</segtitle> <seglistitem> - <seg>0.4 SBU</seg> - <seg>14.7 MB</seg> + <seg>0.3 SBU</seg> + <seg>18.6 MB</seg> </seglistitem> </segmentedlist> @@ -81,6 +81,22 @@ find man -name Makefile -exec sed -i '/groups/d' {} \;</userinput></screen> <screen><userinput>sed -i -e 's/ ko//' -e 's/ zh_CN zh_TW//' man/Makefile</userinput></screen> + <para>Shadow supplies other manual pages in a UTF-8 encoding. Man-DB + can display these in the recommended encodings by using the convert-mans + script which we installed.</para> + +<screen><userinput> for i in de es fi fr id it pt_BR; do + convert-mans UTF-8 ISO-8859-1 man/${i}/*.? +done + +for i in cs hu pl; do + convert-mans UTF-8 ISO-8859-2 man/${i}/*.? +done + +convert-mans UTF-8 EUC-JP man/ja/*.? +convert-mans UTF-8 KOI8-R man/ru/*.? +convert-mans UTF-8 ISO-8859-9 man/tr/*.?</userinput></screen> + <para>Compile the package:</para> <screen><userinput>make</userinput></screen> |