diff options
author | Matthew Burgess <matthew@linuxfromscratch.org> | 2006-11-25 19:15:17 +0000 |
---|---|---|
committer | Matthew Burgess <matthew@linuxfromscratch.org> | 2006-11-25 19:15:17 +0000 |
commit | 6aeced45afc52af3b7e0c81bd70797a7c58ab6e0 (patch) | |
tree | 3c8c093e48df149d837d3d7d673d2c862e2aaeda /chapter06/inetutils.xml | |
parent | 9d4c6dc1ed83a0fc87fe9a1caa153969971e988e (diff) |
Prevent inetutils from installing ifconfig as LFS uses ip to configure network interfaces. Fixes #1914.
git-svn-id: http://svn.linuxfromscratch.org/LFS/trunk/BOOK@7871 4aa44e1e-78dd-0310-a6d2-fbcd4c07a689
Diffstat (limited to 'chapter06/inetutils.xml')
-rw-r--r-- | chapter06/inetutils.xml | 12 |
1 files changed, 11 insertions, 1 deletions
diff --git a/chapter06/inetutils.xml b/chapter06/inetutils.xml index 1bf49f0e6..69afa57a2 100644 --- a/chapter06/inetutils.xml +++ b/chapter06/inetutils.xml @@ -45,13 +45,23 @@ <screen><userinput>./configure --prefix=/usr --libexecdir=/usr/sbin \ --sysconfdir=/etc --localstatedir=/var \ - --disable-logger --disable-syslogd \ + --disable-ifconfig --disable-logger --disable-syslogd \ --disable-whois --disable-servers</userinput></screen> <variablelist> <title>The meaning of the configure options:</title> <varlistentry> + <term><parameter>--disable-ifconfig</parameter></term> + <listitem> + <para>This option prevents Inetutils from installing the + <command>ifconfig</command>, which can be used to configure network + interfaces. LFS uses <command>ip</command> from IPRoute2 to perform + this task.</para> + </listitem> + </varlistentry> + + <varlistentry> <term><parameter>--disable-logger</parameter></term> <listitem> <para>This option prevents Inetutils from installing the |