diff options
Diffstat (limited to 'chapter06/perl.xml')
-rw-r--r-- | chapter06/perl.xml | 17 |
1 files changed, 15 insertions, 2 deletions
diff --git a/chapter06/perl.xml b/chapter06/perl.xml index f14810284..649e6339e 100644 --- a/chapter06/perl.xml +++ b/chapter06/perl.xml @@ -35,7 +35,7 @@ <seglistitem> <seg>Bash, Berkeley DB, Binutils, Coreutils, Diffutils, Gawk, GCC, - Glibc, Grep, Make, and Sed</seg> + Glibc, Grep, Iana-Etc, Make, Patch, and Sed</seg> </seglistitem> </segmentedlist> @@ -55,7 +55,10 @@ this package is built. If the defaults it auto-detects are suitable, prepare Perl for compilation with:</para> -<screen><userinput>./configure.gnu --prefix=/usr -Dpager="/usr/bin/less -isR"</userinput></screen> +<screen><userinput>./configure.gnu --prefix=/usr \ + -Dman1dir=/usr/share/man/man1 \ + -Dman3dir=/usr/share/man/man3 \ + -Dpager="/usr/bin/less -isR"</userinput></screen> <variablelist> <title>The meaning of the configure options:</title> @@ -68,6 +71,16 @@ </listitem> </varlistentry> + <varlistentry> + <term><parameter>-Dman1dir=/usr/share/man/man1 + -Dman3dir=/usr/share/man/man3</parameter></term> + <listitem> + <para>Since Groff is not installed yet, <command>Configure</command> + thinks that we do not want man pages for Perl. Issuing these + parameters overrides this decision.</para> + </listitem> + </varlistentry> + </variablelist> <para>Compile the package:</para> |