mirror of
https://git.linuxfromscratch.org/lfs.git
synced 2025-07-10 14:24:10 +01:00
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:
parent
fa78391249
commit
9ab4ef5891
@ -36,6 +36,16 @@
|
|||||||
</listitem>
|
</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>
|
<listitem>
|
||||||
<para>2011-12-22</para>
|
<para>2011-12-22</para>
|
||||||
<itemizedlist>
|
<itemizedlist>
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
<!ENTITY version "SVN-20111223">
|
<!ENTITY version "SVN-20111228">
|
||||||
<!ENTITY releasedate "Dec 23, 2011">
|
<!ENTITY releasedate "Dec 28, 2011">
|
||||||
<!ENTITY copyrightdate "1999-2011"><!-- jhalfs needs a literal dash, not – -->
|
<!ENTITY copyrightdate "1999-2011"><!-- jhalfs needs a literal dash, not – -->
|
||||||
<!ENTITY milestone "7.1">
|
<!ENTITY milestone "7.1">
|
||||||
<!ENTITY generic-version "development"> <!-- Use "development", "testing", or "x.y[-pre{x}]" -->
|
<!ENTITY generic-version "development"> <!-- Use "development", "testing", or "x.y[-pre{x}]" -->
|
||||||
|
@ -169,7 +169,8 @@ if [ -e /usr/bin/awk ];
|
|||||||
then echo "/usr/bin/awk -> `readlink -f /usr/bin/awk`";
|
then echo "/usr/bin/awk -> `readlink -f /usr/bin/awk`";
|
||||||
else echo "awk not found"; fi
|
else echo "awk not found"; fi
|
||||||
gcc --version | head -n1
|
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
|
grep --version | head -n1
|
||||||
gzip --version | head -n1
|
gzip --version | head -n1
|
||||||
cat /proc/version
|
cat /proc/version
|
||||||
|
Loading…
Reference in New Issue
Block a user