Fix version-check.sh's Glibc version detection on 64-bit Debian hosts. Thanks to Pierre Labastie for the report and fix.

git-svn-id: http://svn.linuxfromscratch.org/LFS/trunk/BOOK@9696 4aa44e1e-78dd-0310-a6d2-fbcd4c07a689
This commit is contained in:
Matthew Burgess 2011-12-28 17:57:40 +00:00
parent fa78391249
commit 9ab4ef5891
3 changed files with 14 additions and 3 deletions

View File

@ -36,6 +36,16 @@
</listitem>
-->
<listitem>
<para>2011-12-28</para>
<itemizedlist>
<listitem>
<para>[matthew] - Fix version-check.sh's Glibc version detection on 64-bit Debian hosts.
Thanks to Pierre Labastie for the report and fix.</para>
</listitem>
</itemizedlist>
</listitem>
<listitem>
<para>2011-12-22</para>
<itemizedlist>

View File

@ -1,5 +1,5 @@
<!ENTITY version "SVN-20111223">
<!ENTITY releasedate "Dec 23, 2011">
<!ENTITY version "SVN-20111228">
<!ENTITY releasedate "Dec 28, 2011">
<!ENTITY copyrightdate "1999-2011"><!-- jhalfs needs a literal dash, not &ndash; -->
<!ENTITY milestone "7.1">
<!ENTITY generic-version "development"> <!-- Use "development", "testing", or "x.y[-pre{x}]" -->

View File

@ -169,7 +169,8 @@ if [ -e /usr/bin/awk ];
then echo "/usr/bin/awk -&gt; `readlink -f /usr/bin/awk`";
else echo "awk not found"; fi
gcc --version | head -n1
/lib/libc.so.6 | head -n1 | cut -d"," -f1
libcLib="`find /lib /lib64 -name libc.so.6 -print`"
/${libcLib} | head -n1 | cut -d"," -f1
grep --version | head -n1
gzip --version | head -n1
cat /proc/version