Changeset 4ea67ff


Ignore:
Timestamp:
12/07/2013 10:36:41 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:
f6b1d91
Parents:
1d8c944
Message:

Fix location of binaries and libraries for kmod and xz.

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

Files:
4 edited

Legend:

Unmodified
Added
Removed
  • chapter01/changelog.xml

    r1d8c944 r4ea67ff  
    3737-->
    3838    <listitem>
     39      <para>2013-12-07</para>
     40      <itemizedlist>
     41        <listitem>
     42          <para>[bdubbs] - Fix location of binaries and libraries
     43          for kmod and xz.  Fixes
     44          <ulink url="&lfs-ticket-root;3443">#3443</ulink>.</para>
     45        </listitem>
     46      </itemizedlist>
     47    </listitem>
     48
     49    <listitem>
    3950      <para>2013-11-23</para>
    4051      <itemizedlist>
  • chapter06/kmod.xml

    r1d8c944 r4ea67ff  
    4646<screen><userinput remap="configure">./configure --prefix=/usr       \
    4747            --bindir=/bin       \
    48             --libdir=/lib       \
    4948            --sysconfdir=/etc   \
    5049            --disable-manpages  \
     
    8281
    8382    <para>Install the package, and create symlinks for compatibility with
    84     Module-Init-Tools, the package that previously handled Linux kernel modules:
     83    Module-Init-Tools, the package that previously handled Linux kernel modules.
     84    Also make sure that all libraries are in the correct directory:
    8585    </para>
    8686
    87 <screen><userinput remap="install">make pkgconfigdir=/usr/lib/pkgconfig install
     87<screen><userinput remap="install">make install
    8888
    8989for target in depmod insmod modinfo modprobe rmmod; do
     
    9292
    9393ln -sv kmod /bin/lsmod</userinput></screen>
     94
     95    <para> Make sure that all libraries are in the correct directory: </para>
     96
     97<screen><userinput remap="install">mv -v /usr/lib/libkmod.so.* /lib
     98ln -svf ../../lib/libkmod.so.2.2.4 /usr/lib/libkmod.so</userinput></screen>
     99
     100<!-- Note to editors:  When upgrading kmod, make sure the library version
     101     specified above has not changed -->
    94102
    95103  </sect2>
  • chapter06/xz.xml

    r1d8c944 r4ea67ff  
    4747    <para>Prepare Xz for compilation with:</para>
    4848
    49 <screen><userinput remap="configure">./configure --prefix=/usr --libdir=/lib --docdir=/usr/share/doc/xz-&xz-version;</userinput></screen>
     49<screen><userinput remap="configure">./configure --prefix=/usr \
     50            --bindir=/bin \
     51            --docdir=/usr/share/doc/xz-&xz-version;</userinput></screen>
    5052
    5153    <para>Compile the package:</para>
     
    5759<screen><userinput remap="test">make check</userinput></screen>
    5860
    59   <para>Install the package:</para>
    60 
    61 <screen><userinput remap="install">make pkgconfigdir=/usr/lib/pkgconfig install</userinput></screen>
     61  <para>Install the package and make sure that all libraries are in the
     62  correct directory:</para>
     63
     64<screen><userinput remap="install">make install
     65mv -v /usr/lib/liblzma.so.* /lib
     66ln -svf ../../lib/liblzma.so.&xz-version; /usr/lib/liblzma.so</userinput></screen>
    6267
    6368  </sect2>
  • general.ent

    r1d8c944 r4ea67ff  
    1 <!ENTITY version         "SVN-20131123">
    2 <!ENTITY releasedate     "November 23, 2013">
     1<!ENTITY version         "SVN-20131207">
     2<!ENTITY releasedate     "December 7, 2013">
    33<!ENTITY copyrightdate   "1999-2013"><!-- jhalfs needs a literal dash, not &ndash; -->
    44<!ENTITY milestone       "7.5">
Note: See TracChangeset for help on using the changeset viewer.