Changeset b057615


Ignore:
Timestamp:
02/27/2016 04:11:22 AM (8 years ago)
Author:
Bruce Dubbs <bdubbs@…>
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, 7.9, 8.0, 8.1, 8.2, 8.3, 8.4, 9.0, 9.1, 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:
2005e74
Parents:
5b7d4da
Message:

Prevent attr and shadow from overwriting man pages installed by the man-pages
package.

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

Files:
3 edited

Legend:

Unmodified
Added
Removed
  • chapter01/changelog.xml

    r5b7d4da rb057615  
    4040      <itemizedlist>
    4141        <listitem>
     42          <para>[bdubbs] - Prevent attr and shadow from overwriting
     43          man pages installed by the man-pages package.  Fixes
     44          <ulink url="&lfs-ticket-root;3890">#3890</ulink>,
     45          <ulink url="&lfs-ticket-root;3891">#3891</ulink>, and
     46          <ulink url="&lfs-ticket-root;3892">#3892</ulink></para>
     47        </listitem>
     48        <listitem>
    4249          <para>[bdubbs] - Retain flex static library for automake
    4350          regression tests.  Remove at the end of Chapter 6. Fixes
  • chapter06/attr.xml

    r5b7d4da rb057615  
    5050    the <xref linkend="man-pages"/> package:</para>
    5151
    52 <screen><userinput remap="pre">sed -i -e "/SUBDIRS/s|man2||" man/Makefile</userinput></screen>
     52<screen><userinput remap="pre">sed -i -e "/SUBDIRS/s|man[25]||g" man/Makefile</userinput></screen>
    5353
    5454    <para>Prepare Attr for compilation:</para>
  • chapter06/shadow.xml

    r5b7d4da rb057615  
    5151
    5252    <para>Disable the installation of the <command>groups</command> program
    53     and its man pages, as Coreutils provides a better version:</para>
     53    and its man pages, as Coreutils provides a better version. Also
     54    Prevent the installation of manual pages that were already installed by the
     55    <xref linkend="man-pages"/> package:</para>
    5456
    5557<screen><userinput remap="pre">sed -i 's/groups$(EXEEXT) //' src/Makefile.in
    56 find man -name Makefile.in -exec sed -i 's/groups\.1 / /' {} \;</userinput></screen>
     58find man -name Makefile.in -exec sed -i 's/groups\.1 / /'   {} \;
     59find man -name Makefile.in -exec sed -i 's/getspnam\.3 / /' {} \;
     60find man -name Makefile.in -exec sed -i 's/passwd\.5 / /'   {} \;</userinput></screen>
    5761
    5862    <para id="shadow-login_defs">Instead of using the default
Note: See TracChangeset for help on using the changeset viewer.