diff options
Diffstat (limited to 'chapter05/coreutils-inst.xml')
-rw-r--r-- | chapter05/coreutils-inst.xml | 19 |
1 files changed, 15 insertions, 4 deletions
diff --git a/chapter05/coreutils-inst.xml b/chapter05/coreutils-inst.xml index 40d5f823e..455185064 100644 --- a/chapter05/coreutils-inst.xml +++ b/chapter05/coreutils-inst.xml @@ -3,10 +3,21 @@ <sect2> <title>Installation of Coreutils</title> -<para><screen><userinput>./configure --prefix=/stage1 -make -make RUN_EXPENSIVE_TESTS=yes check -make install</userinput></screen></para> +<para>Prepare Coreutils to be compiled:</para> + +<para><screen><userinput>./configure --prefix=/stage1</userinput></screen></para> + +<para>Compile the package:</para> + +<para><screen><userinput>make</userinput></screen></para> + +<para>Test the results thoroughly:</para> + +<para><screen><userinput>make RUN_EXPENSIVE_TESTS=yes check</userinput></screen></para> + +<para>And install the package:</para> + +<para><screen><userinput>make install</userinput></screen></para> </sect2> |