Changeset 1d6017e4


Ignore:
Timestamp:
03/01/2006 09:22:02 PM (18 years ago)
Author:
Jeremy Huntwork <jhuntwork@…>
Children:
c41de60
Parents:
e869351b
Message:

Added a description of perl configure flags that help perl deal with a lack of groff. Thanks Dan Nicholson.

git-svn-id: http://svn.linuxfromscratch.org/LFS/branches/alphabetical/BOOK@7400 4aa44e1e-78dd-0310-a6d2-fbcd4c07a689

Files:
3 edited

Legend:

Unmodified
Added
Removed
  • chapter01/changelog.xml

    re869351b r1d6017e4  
    3636    </listitem>
    3737-->
     38
     39    <listitem>
     40      <para>March 1, 2006</para>
     41      <itemizedlist>
     42        <listitem>
     43          <para>[jhuntwork] - Added a description of perl configure flags that
     44          help perl deal with a lack of groff. Thanks Dan Nicholson.</para>
     45        </listitem>
     46      </itemizedlist>
     47    </listitem>
    3848
    3949    <listitem>
  • chapter06/perl.xml

    re869351b r1d6017e4  
    5656    prepare Perl for compilation with:</para>
    5757
    58 <screen><userinput>./configure.gnu --prefix=/usr -Dpager="/usr/bin/less -isR"</userinput></screen>
     58<screen><userinput>./configure.gnu --prefix=/usr \
     59    -Dman1dir=/usr/share/man/man1 \
     60    -Dman3dir=/usr/share/man/man3 \
     61    -Dpager="/usr/bin/less -isR"</userinput></screen>
    5962
    6063    <variablelist>
     
    6669          <para>This corrects an error in the way that <command>perldoc</command>
    6770          invokes the <command>less</command> program.</para>
     71        </listitem>
     72      </varlistentry>
     73
     74      <varlistentry>
     75        <term><parameter>-Dman1dir=/usr/share/man/man1
     76        -Dman3dir=/usr/share/man/man3</parameter></term>
     77        <listitem>
     78          <para>Since Groff is not installed yet, <command>Configure</command>
     79          thinks that we do not want man pages for Perl.  Issuing these
     80          parameters overrides this decision.</para>
    6881        </listitem>
    6982      </varlistentry>
  • general.ent

    re869351b r1d6017e4  
    11<?xml version="1.0" encoding="ISO-8859-1"?>
    2 <!ENTITY version "ALPHABETICAL-20060225">
    3 <!ENTITY releasedate "Febraury 27, 2006">
     2<!ENTITY version "ALPHABETICAL-20060301">
     3<!ENTITY releasedate "March 1, 2006">
    44<!ENTITY milestone "6.2">
    55<!ENTITY generic-version "development"> <!-- Use "development", "testing", or "x.y[-pre{x}]" -->
Note: See TracChangeset for help on using the changeset viewer.