diff options
author | Pierre Labastie <pieere@linuxfromscratch.org> | 2020-06-13 06:13:02 +0000 |
---|---|---|
committer | Pierre Labastie <pieere@linuxfromscratch.org> | 2020-06-13 06:13:02 +0000 |
commit | 94ec149429f0533cb4ff22af158a09f0517cd0ad (patch) | |
tree | 3b77855a43357a03cb28ca6aeb000ef440300cab /chapter06 | |
parent | 37b5ac129337230433b90e94f9e50cebab8d72d9 (diff) |
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
Diffstat (limited to 'chapter06')
-rw-r--r-- | chapter06/ncurses.xml | 28 |
1 files changed, 19 insertions, 9 deletions
diff --git a/chapter06/ncurses.xml b/chapter06/ncurses.xml index 83499f2eb..629a07f79 100644 --- a/chapter06/ncurses.xml +++ b/chapter06/ncurses.xml @@ -59,21 +59,31 @@ popd</userinput></screen> <para>Prepare Ncurses for compilation:</para> -<screen><userinput remap="configure">./configure --prefix=/usr \ - --host=$LFS_TGT \ - --build=$(./config.guess) \ - --mandir=/usr/share/man \ - --with-shared \ - --without-debug \ - --without-ada \ - --without-normal \ - --enable-widec \ +<screen><userinput remap="configure">./configure --prefix=/usr \ + --host=$LFS_TGT \ + --build=$(./config.guess) \ + --mandir=/usr/share/man \ + --with-manpage-format=normal \ + --with-shared \ + --without-debug \ + --without-ada \ + --without-normal \ + --enable-widec \ --enable-pc-files</userinput></screen> <variablelist> <title>The meaning of the new configure options:</title> <varlistentry> + <term><parameter>--with-manpage-format=normal</parameter></term> + <listitem> + <para>This prevents Ncurses installing compressed manual + pages, which may happen if the host distribution itself + has compressed manual pages.</para> + </listitem> + </varlistentry> + + <varlistentry> <term><parameter>--without-ada</parameter></term> <listitem> <para>This ensures that Ncurses does not build support for the Ada |