Changeset e408cb0 for chapter06


Ignore:
Timestamp:
01/25/2016 12:03:45 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:
f1dd547
Parents:
e691c77
Message:

Update to coreutils-8.25. Fixes
Simplify bash installation procedures.

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

Location:
chapter06
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • chapter06/bash.xml

    re691c77 re408cb0  
    4949
    5050<screen><userinput remap="configure">./configure --prefix=/usr                       \
    51             --bindir=/bin                       \
    5251            --docdir=/usr/share/doc/bash-&bash-version; \
    5352            --without-bash-malloc               \
     
    8584<screen><userinput remap="test">su nobody -s /bin/bash -c "PATH=$PATH make tests"</userinput></screen>
    8685
    87     <para>Install the package:</para>
     86    <para>Install the package and move the main executable to
     87    <filename class='directory'>/bin</filename>:</para>
    8888
    89 <screen><userinput remap="install">make install</userinput></screen>
     89<screen><userinput remap="install">make install
     90mv -vf /usr/bin/bash /bin</userinput></screen>
    9091
    9192    <para>Run the newly compiled <command>bash</command> program (replacing the one that is
  • chapter06/chapter06.xml

    re691c77 re408cb0  
    4242  <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="procps.xml"/>
    4343  <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="e2fsprogs.xml"/>
    44   <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="coreutils.xml"/>
    4544  <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="iana-etc.xml"/>
    4645  <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="m4.xml"/>
     
    6362  <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="autoconf.xml"/>
    6463  <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="automake.xml"/>
     64  <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="coreutils.xml"/>
    6565  <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="diffutils.xml"/>
    6666  <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="gawk.xml"/>
  • chapter06/coreutils.xml

    re691c77 re408cb0  
    4949    <para>POSIX requires that programs from Coreutils recognize character
    5050    boundaries correctly even in multibyte locales. The following patch fixes
    51     this non-compliance and other internationalization-related bugs.
    52     <!--Afterwards make sure the timestamp for <filename>Makefile.in</filename> is
    53     later than all other files to prevent a <command>make</command>
    54     error:</para>-->
    55     Afterwards disable a test that fails with the current version of perl.</para>
    56 
    57 <screen><userinput remap="pre">patch -Np1 -i ../&coreutils-i18n-patch;
    58 sed -i '/tests\/misc\/sort.pl/ d' Makefile.in</userinput></screen>
    59 
    60 <!--touch Makefile.in</userinput></screen>-->
     51    this non-compliance and other internationalization-related bugs.</para>
     52
     53<screen><userinput remap="pre">patch -Np1 -i ../&coreutils-i18n-patch;</userinput></screen>
    6154
    6255    <note>
     
    9689    <para>Compile the package:</para>
    9790
    98 <screen><userinput remap="make">make</userinput></screen>
     91<screen><userinput remap="make">FORCE_UNSAFE_CONFIGURE=1 make</userinput></screen>
    9992
    10093    <para>Skip down to <quote>Install the
Note: See TracChangeset for help on using the changeset viewer.