Ignore:
Timestamp:
01/21/2014 06:49:14 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:
ef8510e
Parents:
cb23c1a
Message:

Moved util-linux final build to be after udev.
Fixed up e2fsprogs and udev to use the Chapter 5 build of util-linux.

Changed umount instructions in Chapter 9 to be compatible with
changes in mounting /run as a tmpfs.

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

File:
1 edited

Legend:

Unmodified
Added
Removed
  • chapter06/e2fsprogs.xml

    rcb23c1a r053b206  
    5353    <para>Prepare E2fsprogs for compilation:</para>
    5454
    55 <screen><userinput remap="configure">../configure --prefix=/usr         \
     55<screen><userinput remap="configure">export PKG_CONFIG_PATH=/tools/lib/pkgconfig
     56
     57LIBS=-L/tools/lib                  \
     58CFLAGS=-I/tools/include            \
     59../configure --prefix=/usr         \
    5660             --with-root-prefix="" \
    5761             --enable-elf-shlibs   \
     
    6266
    6367    <variablelist>
    64       <title>The meaning of the configure options:</title>
    65 <!--
     68      <title>The meaning of the environment variable and configure options:</title>
     69
    6670      <varlistentry>
    67         <term><parameter>PKG_CONFIG...</parameter></term>
    68         <listitem>
    69           <para>This enables E2fsprogs to be built without requiring Pkg-config
    70           to be built and installed first.</para>
    71         </listitem>
    72       </varlistentry>
    73 -->
     71        <term><parameter>PKG_CONFIG_PATH, LIBS, CFLAGS</parameter></term>
     72        <listitem>
     73          <para>These variables enable e2fsprogs to be built using the
     74          <xref linkend="ch-tools-util-linux"/> package built earlier.</para>
     75        </listitem>
     76      </varlistentry>
     77
    7478      <varlistentry>
    7579        <term><parameter>--with-root-prefix=""</parameter></term>
     
    128132<screen><userinput remap="install">make install</userinput></screen>
    129133
    130     <para>Install the static libraries and headers:</para>
    131 
    132 <screen><userinput remap="install">make install-libs</userinput></screen>
     134    <para>Install the static libraries and headers and do some clean up:</para>
     135
     136<screen><userinput remap="install">make install-libs
     137unset PKG_CONFIG_PATH</userinput></screen>
    133138
    134139    <para>Make the installed static libraries writable so debugging symbols can
Note: See TracChangeset for help on using the changeset viewer.