diff options
author | Bruce Dubbs <bdubbs@linuxfromscratch.org> | 2012-01-06 21:43:31 +0000 |
---|---|---|
committer | Bruce Dubbs <bdubbs@linuxfromscratch.org> | 2012-01-06 21:43:31 +0000 |
commit | 54d3ed5dbf1cae144b61fd8b9da2b97121de407e (patch) | |
tree | 3f0ccaf2a051b8c9bd67420b3889187602695799 | |
parent | fae09b2f4f609b4d8dcbcb98f9d98c33e66d5497 (diff) |
Change to simple glibc version check in version-check.sh.
Change to php script for 'Get Counted'.
git-svn-id: http://svn.linuxfromscratch.org/LFS/trunk/BOOK@9698 4aa44e1e-78dd-0310-a6d2-fbcd4c07a689
-rw-r--r-- | chapter01/changelog.xml | 17 | ||||
-rw-r--r-- | chapter09/getcounted.xml | 2 | ||||
-rw-r--r-- | general.ent | 4 | ||||
-rw-r--r-- | prologue/hostreqs.xml | 12 |
4 files changed, 27 insertions, 8 deletions
diff --git a/chapter01/changelog.xml b/chapter01/changelog.xml index 838f9059c..eff51e64c 100644 --- a/chapter01/changelog.xml +++ b/chapter01/changelog.xml @@ -37,10 +37,25 @@ --> <listitem> + <para>2012-01-06</para> + <itemizedlist> + <listitem> + <para>[bdubbs] - Change to simpler command for version-check.sh's + Glibc version detection on all platforms. + Thanks to Pierre Labastie for the report and fix.</para> + </listitem> + <listitem> + <para>[bdubbs] - Change to php script for 'get counted'.</para> + </listitem> + </itemizedlist> + </listitem> + + <listitem> <para>2011-12-28</para> <itemizedlist> <listitem> - <para>[matthew] - Fix version-check.sh's Glibc version detection on 64-bit Debian hosts. + <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> diff --git a/chapter09/getcounted.xml b/chapter09/getcounted.xml index 3aa6895db..bc0ad8908 100644 --- a/chapter09/getcounted.xml +++ b/chapter09/getcounted.xml @@ -11,7 +11,7 @@ <title>Get Counted</title> <para>Now that you have finished the book, do you want to be counted as an - LFS user? Head over to <ulink url="&lfs-root;cgi-bin/lfscounter.cgi"/> and + LFS user? Head over to <ulink url="&lfs-root;cgi-bin/lfscounter.php"/> and register as an LFS user by entering your name and the first LFS version you have used.</para> diff --git a/general.ent b/general.ent index 1d17dd748..e099d44fd 100644 --- a/general.ent +++ b/general.ent @@ -1,5 +1,5 @@ -<!ENTITY version "SVN-20111228"> -<!ENTITY releasedate "Dec 28, 2011"> +<!ENTITY version "SVN-20120106"> +<!ENTITY releasedate "Jan 6, 2012"> <!ENTITY copyrightdate "1999-2012"><!-- jhalfs needs a literal dash, not – --> <!ENTITY milestone "7.1"> <!ENTITY generic-version "development"> <!-- Use "development", "testing", or "x.y[-pre{x}]" --> diff --git a/prologue/hostreqs.xml b/prologue/hostreqs.xml index 751bc9525..5961b773a 100644 --- a/prologue/hostreqs.xml +++ b/prologue/hostreqs.xml @@ -157,20 +157,23 @@ bash --version | head -n1 | cut -d" " -f2-4 echo "/bin/sh -> `readlink -f /bin/sh`" echo -n "Binutils: "; ld --version | head -n1 | cut -d" " -f3- bison --version | head -n1 + if [ -e /usr/bin/yacc ]; then echo "/usr/bin/yacc -> `readlink -f /usr/bin/yacc`"; else echo "yacc not found"; fi + bzip2 --version 2>&1 < /dev/null | head -n1 | cut -d" " -f1,6- echo -n "Coreutils: "; chown --version | head -n1 | cut -d")" -f2 diff --version | head -n1 find --version | head -n1 gawk --version | head -n1 + if [ -e /usr/bin/awk ]; then echo "/usr/bin/awk -> `readlink -f /usr/bin/awk`"; else echo "awk not found"; fi + gcc --version | head -n1 -libcLib="`find /lib /lib64 -name libc.so.6 -print`" -/${libcLib} | head -n1 | cut -d"," -f1 +ldd --version | head -n1 | cut -d" " -f2- # glibc version grep --version | head -n1 gzip --version | head -n1 cat /proc/version @@ -182,9 +185,10 @@ sed --version | head -n1 tar --version | head -n1 echo "Texinfo: `makeinfo --version | head -n1`" xz --version | head -n1 + echo 'main(){}' > dummy.c && gcc -o dummy dummy.c -if [ -x dummy ]; then echo "Compilation OK"; - else echo "Compilation failed"; fi +if [ -x dummy ]; then echo "gcc compilation OK"; + else echo "gcc compilation failed"; fi rm -f dummy.c dummy </literal> EOF |