aboutsummaryrefslogtreecommitdiffstats
path: root/chapter05/utillinux-inst.xml
diff options
context:
space:
mode:
Diffstat (limited to 'chapter05/utillinux-inst.xml')
-rw-r--r--chapter05/utillinux-inst.xml25
1 files changed, 18 insertions, 7 deletions
diff --git a/chapter05/utillinux-inst.xml b/chapter05/utillinux-inst.xml
index 12e22e833..364a65e1f 100644
--- a/chapter05/utillinux-inst.xml
+++ b/chapter05/utillinux-inst.xml
@@ -1,15 +1,26 @@
+<sect2><title>&nbsp;</title><para>&nbsp;</para></sect2>
+
<sect2>
<title>Installation of Util-linux</title>
-<para>We only need the mount and umount programs at the moment, so we won't
-be compiling the entire package.</para>
+<para>Prepare Util-linux to be compiled:</para>
+
+<para><screen><userinput>LDFLAGS="-static" ./configure</userinput></screen></para>
+
+<para>Begin compiling the package:</para>
+
+<para><screen><userinput>make -C lib</userinput></screen></para>
+
+<para>We only need the <emphasis>mount</emphasis> and
+<emphasis>umount</emphasis> programs at the moment, so we won't be
+compiling the entire package. Compile these two programs by issuing
+the following command:</para>
+
+<para><screen><userinput>make -C mount mount umount</userinput></screen></para>
-<para>Install Util-linux by running the following commands:</para>
+<para>Finish installing these two programs:</para>
-<para><screen><userinput>LDFLAGS="-static" ./configure &amp;&amp;
-make -C lib &amp;&amp;
-make -C mount mount umount &amp;&amp;
-cp mount/{mount,umount} $LFS/static/bin</userinput></screen></para>
+<para><screen><userinput>cp mount/{mount,umount} $LFS/static/bin</userinput></screen></para>
</sect2>