Changeset 2c5ca04


Ignore:
Timestamp:
02/05/2014 07:46:52 PM (10 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.5, 7.6, 7.7, 7.8, 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:
de7475be
Parents:
5d76f82
Message:

Fix e2fsprogs tests to run properly in the LFS chroot envirnment.
Remove unnecessary mkdir in groff.

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

Files:
4 edited

Legend:

Unmodified
Added
Removed
  • chapter01/changelog.xml

    r5d76f82 r2c5ca04  
    3737-->
    3838    <listitem>
     39      <para>2014-02-05</para>
     40      <itemizedlist>
     41        <listitem>
     42          <para>[bdubbs] - Fix e2fsprogs tests to run properly
     43          in the LFS chroot envirnment.</para>
     44        </listitem>
     45        <listitem>
     46          <para>[bdubbs] - Remove unnecessary mkdir in groff.</para>
     47        </listitem>
     48      </itemizedlist>
     49    </listitem>
     50
     51    <listitem>
    3952      <para>2014-02-02</para>
    4053      <itemizedlist>
  • chapter06/e2fsprogs.xml

    r5d76f82 r2c5ca04  
    4545    <title>Installation of E2fsprogs</title>
    4646
     47    <para>First fix a problem with running regression tests in the LFS chroot
     48    environment:</para>
     49
     50<screen><userinput remap="pre">sed -i -e 's|^LD_LIBRARY_PATH.*|&amp;:/tools/lib|' tests/test_config</userinput></screen>
     51
    4752    <para>The E2fsprogs documentation recommends that the package be built in
    4853    a subdirectory of the source tree: </para>
     
    5358    <para>Prepare E2fsprogs for compilation:</para>
    5459
    55 <screen><userinput remap="configure">export PKG_CONFIG_PATH=/tools/lib/pkgconfig
    56 
    57 LIBS=-L/tools/lib                  \
    58 CFLAGS=-I/tools/include            \
    59 ../configure --prefix=/usr         \
    60              --with-root-prefix="" \
    61              --enable-elf-shlibs   \
    62              --disable-libblkid    \
    63              --disable-libuuid     \
    64              --disable-uuidd       \
     60<screen><userinput remap="configure">LIBS=-L/tools/lib                    \
     61CFLAGS=-I/tools/include              \
     62PKG_CONFIG_PATH=/tools/lib/pkgconfig \
     63../configure --prefix=/usr           \
     64             --with-root-prefix=""   \
     65             --enable-elf-shlibs     \
     66             --disable-libblkid      \
     67             --disable-libuuid       \
     68             --disable-uuidd         \
    6569             --disable-fsck</userinput></screen>
    6670
     
    132136<screen><userinput remap="install">make install</userinput></screen>
    133137
    134     <para>Install the static libraries and headers and do some clean up:</para>
    135 
    136 <screen><userinput remap="install">make install-libs
    137 unset PKG_CONFIG_PATH</userinput></screen>
     138    <para>Install the static libraries:</para>
     139
     140<screen><userinput remap="install">make install-libs</userinput></screen>
    138141
    139142    <para>Make the installed static libraries writable so debugging symbols can
  • chapter06/groff.xml

    r5d76f82 r2c5ca04  
    6262    <para>Install the package:</para>
    6363
    64 <screen><userinput remap="install">mkdir -pv /usr/share/doc/groff-1.22/pdf
    65 make install</userinput></screen>
     64<screen><userinput remap="install">make install</userinput></screen>
    6665
    6766    <para>Some documentation programs, such as <command>xman</command>,
  • general.ent

    r5d76f82 r2c5ca04  
    1 <!ENTITY version         "SVN-20140202">
    2 <!ENTITY releasedate     "February 2, 2014">
     1<!ENTITY version         "SVN-20140205">
     2<!ENTITY releasedate     "February 5, 2014">
    33<!ENTITY copyrightdate   "1999-2014"><!-- jhalfs needs a literal dash, not &ndash; -->
    44<!ENTITY milestone       "7.5">
Note: See TracChangeset for help on using the changeset viewer.