Changeset 94ec149 for chapter06


Ignore:
Timestamp:
06/13/2020 06:13:02 AM (4 years ago)
Author:
Pierre Labastie <pieere@…>
Branches:
10.0, 10.0-rc1, 10.1, 10.1-rc1, 11.0, 11.0-rc1, 11.0-rc2, 11.0-rc3, 11.1, 11.1-rc1, 11.2, 11.2-rc1, 11.3, 11.3-rc1, 12.0, 12.0-rc1, 12.1, 12.1-rc1, arm, bdubbs/gcc13, ml-11.0, multilib, renodr/libudev-from-systemd, s6-init, trunk, xry111/arm64, xry111/arm64-12.0, xry111/clfs-ng, xry111/lfs-next, xry111/loongarch, xry111/loongarch-12.0, xry111/loongarch-12.1, xry111/mips64el, xry111/pip3, xry111/rust-wip-20221008, xry111/update-glibc
Children:
ad15abd
Parents:
37b5ac1
Message:

Add a switch to chapter 6 ncurses' configure so that it does not install
compressed manpages if the host distro has compressed manpages

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

File:
1 edited

Legend:

Unmodified
Added
Removed
  • chapter06/ncurses.xml

    r37b5ac1 r94ec149  
    6060    <para>Prepare Ncurses for compilation:</para>
    6161
    62 <screen><userinput remap="configure">./configure --prefix=/usr             \
    63             --host=$LFS_TGT           \
    64             --build=$(./config.guess) \
    65             --mandir=/usr/share/man   \
    66             --with-shared             \
    67             --without-debug           \
    68             --without-ada             \
    69             --without-normal          \
    70             --enable-widec            \
     62<screen><userinput remap="configure">./configure --prefix=/usr                \
     63            --host=$LFS_TGT              \
     64            --build=$(./config.guess)    \
     65            --mandir=/usr/share/man      \
     66            --with-manpage-format=normal \
     67            --with-shared                \
     68            --without-debug              \
     69            --without-ada                \
     70            --without-normal             \
     71            --enable-widec               \
    7172            --enable-pc-files</userinput></screen>
    7273
    7374    <variablelist>
    7475      <title>The meaning of the new configure options:</title>
     76
     77      <varlistentry>
     78        <term><parameter>--with-manpage-format=normal</parameter></term>
     79        <listitem>
     80          <para>This prevents Ncurses installing compressed manual
     81          pages, which may happen if the host distribution itself
     82          has compressed manual pages.</para>
     83        </listitem>
     84      </varlistentry>
    7585
    7686      <varlistentry>
Note: See TracChangeset for help on using the changeset viewer.