mirror of
https://git.linuxfromscratch.org/lfs.git
synced 2025-06-19 03:39:20 +01:00
Update to man-pages-3.67.
Reformatted version check script to fit pdf pages properly. Added a note about adding the parent directory to the es and pt keymaps for proper keymap loading. git-svn-id: http://svn.linuxfromscratch.org/LFS/trunk/BOOK@10569 4aa44e1e-78dd-0310-a6d2-fbcd4c07a689
This commit is contained in:
parent
377cfd0116
commit
3d2cea91bd
@ -35,6 +35,27 @@
|
|||||||
</itemizedlist>
|
</itemizedlist>
|
||||||
</listitem>
|
</listitem>
|
||||||
-->
|
-->
|
||||||
|
<listitem>
|
||||||
|
<para>2014-05-27</para>
|
||||||
|
<itemizedlist>
|
||||||
|
<listitem>
|
||||||
|
<para>[bdubbs] - Update to man-pages-3.67. Fixes
|
||||||
|
<ulink url="&lfs-ticket-root;3588">#3588</ulink>.</para>
|
||||||
|
</listitem>
|
||||||
|
<listitem>
|
||||||
|
<para>[bdubbs] - Reformatted version check script to fit
|
||||||
|
pdf pages properly. Fixes
|
||||||
|
<ulink url="&lfs-ticket-root;3590">#3590</ulink>.</para>
|
||||||
|
</listitem>
|
||||||
|
<listitem>
|
||||||
|
<para>[bdubbs] - Added a note about adding the
|
||||||
|
parent directory to the es and pt keymaps for proper
|
||||||
|
keymap loading. Fixes
|
||||||
|
<ulink url="&lfs-ticket-root;3591">#3591</ulink>.</para>
|
||||||
|
</listitem>
|
||||||
|
</itemizedlist>
|
||||||
|
</listitem>
|
||||||
|
|
||||||
<listitem>
|
<listitem>
|
||||||
<para>2014-05-19</para>
|
<para>2014-05-19</para>
|
||||||
<itemizedlist>
|
<itemizedlist>
|
||||||
|
@ -396,9 +396,13 @@ EOF</userinput></screen>
|
|||||||
<listitem>
|
<listitem>
|
||||||
<para>This variable specifies the arguments for the
|
<para>This variable specifies the arguments for the
|
||||||
<command>loadkeys</command> program, typically, the name of keymap
|
<command>loadkeys</command> program, typically, the name of keymap
|
||||||
to load, e.g., <quote>es</quote>. If this variable is not set, the
|
to load, e.g., <quote>it</quote>. If this variable is not set, the
|
||||||
bootscript will not run the <command>loadkeys</command> program,
|
bootscript will not run the <command>loadkeys</command> program,
|
||||||
and the default kernel keymap will be used.</para>
|
and the default kernel keymap will be used. Note that for the
|
||||||
|
keymaps es and pt, the parent directory should also be specified
|
||||||
|
(e.g. qwerty/es or query/pt) to ensure the proper keymap is
|
||||||
|
loaded.
|
||||||
|
</para>
|
||||||
</listitem>
|
</listitem>
|
||||||
</varlistentry>
|
</varlistentry>
|
||||||
|
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
<!ENTITY version "SVN-20140519">
|
<!ENTITY version "SVN-20140527">
|
||||||
<!ENTITY short-version "svn"> <!-- Used in dbus chapter, change to x.y for release -->
|
<!ENTITY short-version "svn"> <!-- Used in dbus chapter, change to x.y for release -->
|
||||||
<!ENTITY releasedate "May 19, 2014">
|
<!ENTITY releasedate "May 27, 2014">
|
||||||
<!ENTITY copyrightdate "1999-2014"><!-- jhalfs needs a literal dash, not – -->
|
<!ENTITY copyrightdate "1999-2014"><!-- jhalfs needs a literal dash, not – -->
|
||||||
<!ENTITY milestone "8.0">
|
<!ENTITY milestone "8.0">
|
||||||
<!ENTITY generic-version "development"> <!-- Use "development", "testing", or "x.y[-pre{x}]" -->
|
<!ENTITY generic-version "development"> <!-- Use "development", "testing", or "x.y[-pre{x}]" -->
|
||||||
|
@ -453,10 +453,10 @@
|
|||||||
<!ENTITY man-db-ch6-du "27 MB">
|
<!ENTITY man-db-ch6-du "27 MB">
|
||||||
<!ENTITY man-db-ch6-sbu "0.5 SBU">
|
<!ENTITY man-db-ch6-sbu "0.5 SBU">
|
||||||
|
|
||||||
<!ENTITY man-pages-version "3.66">
|
<!ENTITY man-pages-version "3.67">
|
||||||
<!ENTITY man-pages-size "1,211 KB">
|
<!ENTITY man-pages-size "1,219 KB">
|
||||||
<!ENTITY man-pages-url "&kernel;linux/docs/man-pages/man-pages-&man-pages-version;.tar.xz">
|
<!ENTITY man-pages-url "&kernel;linux/docs/man-pages/man-pages-&man-pages-version;.tar.xz">
|
||||||
<!ENTITY man-pages-md5 "4400766c63a28e58bb899a2d3a0191d8">
|
<!ENTITY man-pages-md5 "5629dae00ef93658ada9226aa33b51b6">
|
||||||
<!ENTITY man-pages-home "http://www.kernel.org/doc/man-pages/">
|
<!ENTITY man-pages-home "http://www.kernel.org/doc/man-pages/">
|
||||||
<!ENTITY man-pages-ch6-du "23 MB">
|
<!ENTITY man-pages-ch6-du "23 MB">
|
||||||
<!ENTITY man-pages-ch6-sbu "less than 0.1 SBU">
|
<!ENTITY man-pages-ch6-sbu "less than 0.1 SBU">
|
||||||
|
@ -176,26 +176,39 @@ if [ -e /usr/bin/awk ];
|
|||||||
then echo "/usr/bin/awk -> `readlink -f /usr/bin/awk`";
|
then echo "/usr/bin/awk -> `readlink -f /usr/bin/awk`";
|
||||||
else echo "awk not found"; fi
|
else echo "awk not found"; fi
|
||||||
|
|
||||||
gcc --version | head -n1
|
gcc - -version | head -n1
|
||||||
g++ --version | head -n1
|
g++ - -version | head -n1
|
||||||
ldd --version | head -n1 | cut -d" " -f2- # glibc version
|
ldd - -version | head -n1 | cut -d" " -f2- # glibc version
|
||||||
grep --version | head -n1
|
grep - -version | head -n1
|
||||||
gzip --version | head -n1
|
gzip - -version | head -n1
|
||||||
cat /proc/version
|
cat /proc/version
|
||||||
m4 --version | head -n1
|
m4 - -version | head -n1
|
||||||
make --version | head -n1
|
make - -version | head -n1
|
||||||
patch --version | head -n1
|
patch - -version | head -n1
|
||||||
echo Perl `perl -V:version`
|
echo Perl `perl -V:version`
|
||||||
sed --version | head -n1
|
sed - -version | head -n1
|
||||||
tar --version | head -n1
|
tar - -version | head -n1
|
||||||
xz --version | head -n1
|
xz - -version | head -n1
|
||||||
|
|
||||||
echo 'main(){}' > dummy.c && g++ -o dummy dummy.c
|
echo 'main(){}' > dummy.c && g++ -o dummy dummy.c
|
||||||
if [ -x dummy ]
|
if [ -x dummy ]
|
||||||
then echo "g++ compilation OK";
|
then echo "g++ compilation OK";
|
||||||
else echo "g++ compilation failed"; fi
|
else echo "g++ compilation failed"; fi
|
||||||
rm -f dummy.c dummy
|
rm -f dummy.c dummy</literal>
|
||||||
|
<!--
|
||||||
|
for lib in lib{gmp,mpfr,mpc}.la; do
|
||||||
|
echo $lib: $(if find /usr/lib* -name $lib|
|
||||||
|
grep -q $lib;then :;else echo not;fi) found
|
||||||
|
done
|
||||||
|
unset lib</literal>-->
|
||||||
|
EOF
|
||||||
|
|
||||||
|
bash version-check.sh</userinput></screen>
|
||||||
|
|
||||||
|
<para>Also check for some library consistency:</para>
|
||||||
|
|
||||||
|
<screen role="nodump"><userinput>cat > library-check.sh << "EOF"
|
||||||
|
<literal>#!/bin/bash
|
||||||
for lib in lib{gmp,mpfr,mpc}.la; do
|
for lib in lib{gmp,mpfr,mpc}.la; do
|
||||||
echo $lib: $(if find /usr/lib* -name $lib|
|
echo $lib: $(if find /usr/lib* -name $lib|
|
||||||
grep -q $lib;then :;else echo not;fi) found
|
grep -q $lib;then :;else echo not;fi) found
|
||||||
@ -203,7 +216,11 @@ done
|
|||||||
unset lib</literal>
|
unset lib</literal>
|
||||||
EOF
|
EOF
|
||||||
|
|
||||||
bash version-check.sh</userinput></screen>
|
bash library-check.sh</userinput></screen>
|
||||||
|
|
||||||
|
<para>The files identified by this script should be all present
|
||||||
|
or all absent, but not only one or two present.</para>
|
||||||
|
|
||||||
|
|
||||||
</sect2>
|
</sect2>
|
||||||
</sect1>
|
</sect1>
|
||||||
|
Loading…
Reference in New Issue
Block a user