diff options
author | Bruce Dubbs <bdubbs@linuxfromscratch.org> | 2009-11-22 05:37:11 +0000 |
---|---|---|
committer | Bruce Dubbs <bdubbs@linuxfromscratch.org> | 2009-11-22 05:37:11 +0000 |
commit | 67e01e5dce9fe4f3a88249d3dfa64251f338bb9e (patch) | |
tree | 6b74f8ff748c66aea197b6bf6febc2209a3ee369 | |
parent | c88356786f473b04aa90fde47fb486a693e70800 (diff) |
Update host requirements script
to print a comment that makeinfo is used to identify
print a comment that makeinfo is used to identify
the Texinfo package version
git-svn-id: http://svn.linuxfromscratch.org/LFS/trunk/BOOK@9114 4aa44e1e-78dd-0310-a6d2-fbcd4c07a689
-rw-r--r-- | chapter01/changelog.xml | 11 | ||||
-rw-r--r-- | general.ent | 4 | ||||
-rw-r--r-- | prologue/hostreqs.xml | 2 |
3 files changed, 14 insertions, 3 deletions
diff --git a/chapter01/changelog.xml b/chapter01/changelog.xml index 80c6df7fe..35b4596ae 100644 --- a/chapter01/changelog.xml +++ b/chapter01/changelog.xml @@ -38,6 +38,17 @@ --> <listitem> + <para>2009-11-22</para> + <itemizedlist> + <listitem> + <para>[bdubbs] Update host requirements script to + print a comment that makeinfo is used to identify + the Texinfo package version.</para> + </listitem> + </itemizedlist> + </listitem> + + <listitem> <para>2009-11-21</para> <itemizedlist> <listitem> diff --git a/general.ent b/general.ent index e67babfe6..f2d82ebeb 100644 --- a/general.ent +++ b/general.ent @@ -1,5 +1,5 @@ -<!ENTITY version "SVN-20091120"> -<!ENTITY releasedate "November 21, 2009"> +<!ENTITY version "SVN-20091122"> +<!ENTITY releasedate "November 22, 2009"> <!ENTITY copyrightdate "1999-2009"><!-- jhalfs needs a literal dash, not – --> <!ENTITY milestone "7.0"> <!ENTITY generic-version "development"> <!-- Use "development", "testing", or "x.y[-pre{x}]" --> diff --git a/prologue/hostreqs.xml b/prologue/hostreqs.xml index 8f167bde1..36470c07c 100644 --- a/prologue/hostreqs.xml +++ b/prologue/hostreqs.xml @@ -177,7 +177,7 @@ patch --version | head -n1 echo Perl `perl -V:version` sed --version | head -n1 tar --version | head -n1 -makeinfo --version | head -n1 +echo "Texinfo: `makeinfo --version | head -n1`" echo 'main(){}' > dummy.c && gcc -o dummy dummy.c if [ -x dummy ]; then echo "Compilation OK"; else echo "Compilation failed"; fi |