aboutsummaryrefslogtreecommitdiffstats
path: root/chapter06/perl.xml
diff options
context:
space:
mode:
authorJeremy Huntwork <jhuntwork@linuxfromscratch.org>2006-04-06 17:31:00 +0000
committerJeremy Huntwork <jhuntwork@linuxfromscratch.org>2006-04-06 17:31:00 +0000
commit3685bb6f5102f5047d4cb59ad0a1d23bfad7152b (patch)
tree09c4b35840f487bac84063e7b995029cb44f756c /chapter06/perl.xml
parent7f6e6e913332a699e911f8fde816149d3b7ed235 (diff)
Merged alphabetical branch to trunk.
git-svn-id: http://svn.linuxfromscratch.org/LFS/trunk/BOOK@7489 4aa44e1e-78dd-0310-a6d2-fbcd4c07a689
Diffstat (limited to 'chapter06/perl.xml')
-rw-r--r--chapter06/perl.xml17
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>