Changeset b2b94a5


Ignore:
Timestamp:
Aug 7, 2012, 2:20:42 PM (12 years ago)
Author:
William Harrington <kb0iic@…>
Branches:
clfs-2.1, clfs-3.0.0-systemd, clfs-3.0.0-sysvinit, master, systemd, sysvinit
Children:
f44ac55
Parents:
ec40e5f
Message:

Adjust version check script to check for libc version where the host system may not use lib and lib64 for installations.

Location:
BOOK
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • BOOK/introduction/common/changelog.xml

    rec40e5f rb2b94a5  
    4343          <para>[William Harrington] - Adjust XZ final system install command to properly install the lzma pkgconfig file to the proper location.</para>
    4444        </listitem>
     45        <listitem>
     46          <para>[William Harrington] - Update version check script to find the libc version with hosts that use paths other than /lib and /lib64, such as multiarch distros.</para>
     47        </listitem>
    4548      </itemizedlist>
    4649    </listitem>
  • BOOK/prologue/common/hostreqs.xml

    rec40e5f rb2b94a5  
    126126gawk --version | head -n1
    127127gcc --version | head -n1
    128 $(find /lib{,64} -name libc.so.6) | head -n1 | cut -d" " -f1-7
     128ldd $(which bash) | grep libc.so | cut -d ' ' -f 3 | bash | head -n 1 | cut -d ' ' -f 1-7
    129129grep --version | head -n1
    130130gzip --version | head -n1
Note: See TracChangeset for help on using the changeset viewer.