aboutsummaryrefslogtreecommitdiffstats
path: root/chapter06
diff options
context:
space:
mode:
authorBruce Dubbs <bdubbs@linuxfromscratch.org>2016-01-17 18:13:59 +0000
committerBruce Dubbs <bdubbs@linuxfromscratch.org>2016-01-17 18:13:59 +0000
commite691c77d104a85344c76afc4bb6264a229d4c46d (patch)
tree65835fc69316e56bca7aec6ebb904fca71b4725f /chapter06
parent8f8eaa0f947d09c09d193c6a405ef230321b7e56 (diff)
Update to linux-4.4.
Update to iproute2-4.4.0. git-svn-id: http://svn.linuxfromscratch.org/LFS/trunk/BOOK@10986 4aa44e1e-78dd-0310-a6d2-fbcd4c07a689
Diffstat (limited to 'chapter06')
-rw-r--r--chapter06/iproute2.xml33
1 files changed, 10 insertions, 23 deletions
diff --git a/chapter06/iproute2.xml b/chapter06/iproute2.xml
index 9d286210f..d65e23e53 100644
--- a/chapter06/iproute2.xml
+++ b/chapter06/iproute2.xml
@@ -41,32 +41,19 @@
<sect2 role="installation">
<title>Installation of IPRoute2</title>
- <para>The <command>arpd</command> binary included in this package is
- dependent on Berkeley DB. Because <command>arpd</command> is not a very
- common requirement on a base Linux system, remove the dependency on Berkeley
- DB by applying the commands below. If the <command>arpd</command> binary is
- needed, instructions for compiling Berkeley DB can be found in the BLFS Book
- at <ulink url="&blfs-book;server/databases.html#db"/>.
+ <para>The <command>arpd</command> program included in this package will not
+ be built since it is dependent on Berkeley DB, which is not installed in
+ LFS. However, documentation files and a directory for
+ <command>arpd</command> will still be installed. Prevent this by running
+ the commands below. If the <command>arpd</command> binary is needed,
+ instructions for compiling Berkeley DB can be found in the BLFS Book at
+ <ulink url="&blfs-book;server/databases.html#db"/>.
</para>
-<screen><userinput remap="pre">sed -i '/^TARGETS/s@arpd@@g' misc/Makefile
-sed -i /ARPD/d Makefile
-sed -i 's/arpd.8//' man/man8/Makefile</userinput></screen>
+<screen><userinput remap="pre">sed -i /ARPD/d Makefile
+sed -i 's/arpd.8//' man/man8/Makefile
+rm -v doc/arpd.sgml</userinput></screen>
-<!-- Save as comments for now
- <para>Remove a compiler flag that causes the compilation to fail:</para>
-<screen><userinput remap="pre">sed -i 's/-Werror//' Makefile</userinput></screen>
-
--->
-<!--
-
- <para>Do not build the unneeded tipc program. Transparent Inter-process
- Communication (TIPC) is a network communications protocol for Inter-process
- communication (IPC) that was designed for intra-cluster
- communication.</para>
-
-<screen><userinput remap="pre">sed -i 's/tipc //' Makefile</userinput></screen>
--->
<para>Compile the package:</para>
<screen><userinput remap="make">make</userinput></screen>