diff options
author | Greg Schafer <greg@linuxfromscratch.org> | 2003-11-14 22:54:43 +0000 |
---|---|---|
committer | Greg Schafer <greg@linuxfromscratch.org> | 2003-11-14 22:54:43 +0000 |
commit | 2b07134fa88b96c50c23d5cd4d375634021584e5 (patch) | |
tree | 6eb454ed8b373caa223ab7bb5d3e63a5c9574b79 /chapter06/utillinux.xml | |
parent | 8ffb41edae3b085f5199e7d68ddfa10caeb6e71b (diff) |
Pruned the number of "kill" binaries installed. Use the one from Procps. Partially addresses Bug 307.
git-svn-id: http://svn.linuxfromscratch.org/LFS/trunk/BOOK@3089 4aa44e1e-78dd-0310-a6d2-fbcd4c07a689
Diffstat (limited to 'chapter06/utillinux.xml')
-rw-r--r-- | chapter06/utillinux.xml | 14 |
1 files changed, 9 insertions, 5 deletions
diff --git a/chapter06/utillinux.xml b/chapter06/utillinux.xml index 487736df2..8689c09a6 100644 --- a/chapter06/utillinux.xml +++ b/chapter06/utillinux.xml @@ -34,20 +34,24 @@ mkdir -p /var/lib/hwclock</userinput></screen> <para>Compile the package:</para> -<screen><userinput>make HAVE_SLN=yes</userinput></screen> +<screen><userinput>make HAVE_KILL=yes HAVE_SLN=yes</userinput></screen> -<para>The meaning of the make parameter:</para> +<para>The meaning of the make parameters:</para> <itemizedlist> +<listitem><para><userinput>HAVE_KILL=yes</userinput>: This prevents the +<userinput>kill</userinput> program (already installed by Procps) from being +built and installed again.</para></listitem> + <listitem><para><userinput>HAVE_SLN=yes</userinput>: This prevents the <userinput>sln</userinput> program (a statically linked -<userinput>ln</userinput>, already installed by Glibc) from being built -again.</para></listitem> +<userinput>ln</userinput>, already installed by Glibc) from being built and +installed again.</para></listitem> </itemizedlist> <para>And install the package:</para> -<screen><userinput>make HAVE_SLN=yes install</userinput></screen> +<screen><userinput>make HAVE_KILL=yes HAVE_SLN=yes install</userinput></screen> </sect2> |