浏览代码

Added a sed command to the Sysvinit instructions to suppress the installation of the wall program and its man page as a maintained version of this program is installed by Util-linux-ng

git-svn-id: http://svn.linuxfromscratch.org/LFS/trunk/BOOK@8638 4aa44e1e-78dd-0310-a6d2-fbcd4c07a689
Randy McMurchy 17 年之前
父节点
当前提交
e38671e104
共有 2 个文件被更改,包括 13 次插入0 次删除
  1. 6 0
      chapter01/changelog.xml
  2. 7 0
      chapter06/sysvinit.xml

+ 6 - 0
chapter01/changelog.xml

@@ -40,6 +40,12 @@
     <listitem>
       <para>2008-10-11</para>
       <itemizedlist>
+        <listitem>
+          <para>[randy] - Added a sed command to the Sysvinit instructions to
+          suppress the installation of the wall program and its man page as a
+          maintained version of this program is installed by
+          Util-linux-ng.</para>
+        </listitem>
         <listitem>
           <para>[randy] - Added commands to the Chapter 6 Binutils instructions
           to suppress the installation of standards.info. Thanks to Greg

+ 7 - 0
chapter06/sysvinit.xml

@@ -55,6 +55,13 @@
 <screen><userinput remap="pre">sed -i 's@Sending processes@&amp; configured via /etc/inittab@g' \
     src/init.c</userinput></screen>
 
+    <para>A maintained version of the <command>wall</command> program is
+    installed later on during the Util-linux-ng installation. Suppress the
+    installation of this program and its man page:</para>
+
+<screen><userinput remap="make">sed -i -e 's/utmpdump wall/utmpdump/' \
+       -e 's/mountpoint.1 wall.1/mountpoint.1/' src/Makefile</userinput></screen>
+
     <para>Compile the package:</para>
 
 <screen><userinput remap="make">make -C src</userinput></screen>