Changeset 0acd252 in clfs-embedded


Ignore:
Timestamp:
Aug 8, 2012, 1:09:47 PM (12 years ago)
Author:
William Harrington <kb0iic@…>
Branches:
master
Children:
659afd8
Parents:
2779cfb
Message:

Update version check script to find libc.so.6 in other lib directories other than lib and lib64 for multiarch systems.

Location:
BOOK
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • BOOK/general.ent

    r2779cfb r0acd252  
    11<?xml version="1.0" encoding="ISO-8859-1"?>
    22
    3 <!ENTITY month "05"> <!-- Use two digits -->
    4 <!ENTITY month_name "May">
    5 <!ENTITY day "14"> <!-- Use two digits -->
    6 <!ENTITY year "2011"> <!-- Use four digits -->
     3<!ENTITY month "08"> <!-- Use two digits -->
     4<!ENTITY month_name "August">
     5<!ENTITY day "08"> <!-- Use two digits -->
     6<!ENTITY year "2012"> <!-- Use four digits -->
    77
    88<!ENTITY releasedate "&month_name; &day;, &year;">
  • BOOK/introduction/common/changelog.xml

    r2779cfb r0acd252  
    3636    </listitem>
    3737-->
     38    <listitem>
     39      <para>August 08, 2012</para>
     40      <itemizedlist>
     41        <listitem>
     42          <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 distro.</para>
     43        </listitem>
     44      </itemizedlist>
     45    </listitem>
     46
    3847
    3948    <listitem>
  • BOOK/prologue/common/hostreqs.xml

    r2779cfb r0acd252  
    105105gawk --version | head -n1
    106106gcc --version | head -n1
    107 /lib/libc.so.6 | head -n1 | cut -d" " -f1-7
     107ldd $(which bash) | grep libc.so | cut -d ' ' -f 3 | bash | head -n 1 | cut -d ' ' -f 1-7
    108108grep --version | head -n1
    109109gzip --version | head -n1
Note: See TracChangeset for help on using the changeset viewer.