diff options
Diffstat (limited to 'chapter05/grep-inst.xml')
-rw-r--r-- | chapter05/grep-inst.xml | 18 |
1 files changed, 14 insertions, 4 deletions
diff --git a/chapter05/grep-inst.xml b/chapter05/grep-inst.xml index b65737c1c..2364146a7 100644 --- a/chapter05/grep-inst.xml +++ b/chapter05/grep-inst.xml @@ -3,12 +3,22 @@ <sect2> <title>Installation of Grep</title> +<para>Prepare Grep to be compiled:</para> + <para><screen><userinput>./configure --prefix=/stage1 \ - --disable-perl-regexp --with-included-regex -make -make check -make install</userinput></screen></para> + --disable-perl-regexp --with-included-regex</userinput></screen></para> + +<para>Compile the programs:</para> + +<para><screen><userinput>make </userinput></screen></para> + +<para>Check that the programs work correctly:</para> + +<para><screen><userinput>make check</userinput></screen></para> + +<para>Then install them and their documentation:</para> +<para><screen><userinput>make install</userinput></screen></para> </sect2> |