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
This commit is contained in:
Bruce Dubbs 2009-11-22 05:37:11 +00:00
parent c88356786f
commit 67e01e5dce
3 changed files with 14 additions and 3 deletions

View File

@ -37,6 +37,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> <listitem>
<para>2009-11-21</para> <para>2009-11-21</para>
<itemizedlist> <itemizedlist>

View File

@ -1,5 +1,5 @@
<!ENTITY version "SVN-20091120"> <!ENTITY version "SVN-20091122">
<!ENTITY releasedate "November 21, 2009"> <!ENTITY releasedate "November 22, 2009">
<!ENTITY copyrightdate "1999-2009"><!-- jhalfs needs a literal dash, not &ndash; --> <!ENTITY copyrightdate "1999-2009"><!-- jhalfs needs a literal dash, not &ndash; -->
<!ENTITY milestone "7.0"> <!ENTITY milestone "7.0">
<!ENTITY generic-version "development"> <!-- Use "development", "testing", or "x.y[-pre{x}]" --> <!ENTITY generic-version "development"> <!-- Use "development", "testing", or "x.y[-pre{x}]" -->

View File

@ -177,7 +177,7 @@ patch --version | head -n1
echo Perl `perl -V:version` echo Perl `perl -V:version`
sed --version | head -n1 sed --version | head -n1
tar --version | head -n1 tar --version | head -n1
makeinfo --version | head -n1 echo "Texinfo: `makeinfo --version | head -n1`"
echo 'main(){}' > dummy.c &amp;&amp; gcc -o dummy dummy.c echo 'main(){}' > dummy.c &amp;&amp; gcc -o dummy dummy.c
if [ -x dummy ]; then echo "Compilation OK"; if [ -x dummy ]; then echo "Compilation OK";
else echo "Compilation failed"; fi else echo "Compilation failed"; fi