浏览代码

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

Bruce Dubbs 11 年之前
父节点
当前提交
2e8cbe04cd
共有 4 个文件被更改,包括 22 次插入13 次删除
  1. 9 0
      chapter01/changelog.xml
  2. 1 1
      chapter06/readline.xml
  3. 1 1
      packages.ent
  4. 11 11
      prologue/hostreqs.xml

+ 9 - 0
chapter01/changelog.xml

@@ -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>

+ 1 - 1
chapter06/readline.xml

@@ -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>

+ 1 - 1
packages.ent

@@ -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">

+ 11 - 11
prologue/hostreqs.xml

@@ -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 ]