Add SHLIB_LIBS=-lncurses to readline install procedure.

Fix an md5sum for eudev manpages.
Fix typos in host requirements script.


git-svn-id: http://svn.linuxfromscratch.org/LFS/trunk/BOOK@10573 4aa44e1e-78dd-0310-a6d2-fbcd4c07a689
This commit is contained in:
Bruce Dubbs 2014-06-08 18:24:03 +00:00
parent 46eb96ff8e
commit 2e8cbe04cd
4 changed files with 22 additions and 13 deletions

View File

@ -35,6 +35,15 @@
</itemizedlist>
</listitem>
-->
<listitem>
<para>2014-06-08</para>
<itemizedlist>
<listitem>
<para>[bdubbs] - Add SHLIB_LIBS to readline install command.</para>
</listitem>
</itemizedlist>
</listitem>
<listitem>
<para>2014-06-04</para>
<itemizedlist>

View File

@ -80,7 +80,7 @@ sed -i '/{OLDSUFF}/c:' support/shlib-install</userinput></screen>
<para>Install the package:</para>
<screen><userinput remap="install">make install</userinput></screen>
<screen><userinput remap="install">make SHLIB_LIBS=-lncurses install</userinput></screen>
<para>Now move the dynamic libraries to a more appropriate location
and fix up some symbolic links:</para>

View File

@ -153,7 +153,7 @@
<!ENTITY eudev-md5 "80649a0350ff9620fc2da9562d9f2a6a">
<!ENTITY eudev-manpages-size "9 KB">
<!ENTITY eudev-manpages-url "&anduin-other;eudev-&eudev-version;-manpages.tar.bz2">
<!ENTITY eudev-manpages-md5 "eaa5b9af344e958c29288e5376b97a28">
<!ENTITY eudev-manpages-md5 "9742236280dfc34ba034173efd69f5cf ">
<!ENTITY eudev-ch6-du "7.5 MB">
<!ENTITY eudev-ch6-sbu "0.1 SBU">

View File

@ -176,19 +176,19 @@ if [ -e /usr/bin/awk ];
then echo "/usr/bin/awk -&gt; `readlink -f /usr/bin/awk`";
else echo "awk not found"; fi
gcc - -version | head -n1
g++ - -version | head -n1
ldd - -version | head -n1 | cut -d" " -f2- # glibc version
grep - -version | head -n1
gzip - -version | head -n1
gcc --version | head -n1
g++ --version | head -n1
ldd --version | head -n1 | cut -d" " -f2- # glibc version
grep --version | head -n1
gzip --version | head -n1
cat /proc/version
m4 - -version | head -n1
make - -version | head -n1
patch - -version | head -n1
m4 --version | head -n1
make --version | head -n1
patch --version | head -n1
echo Perl `perl -V:version`
sed - -version | head -n1
tar - -version | head -n1
xz - -version | head -n1
sed --version | head -n1
tar --version | head -n1
xz --version | head -n1
echo 'main(){}' &gt; dummy.c &amp;&amp; g++ -o dummy dummy.c
if [ -x dummy ]