Update to e2fsprogs-1.41.10.

Make more robust output in version check for glibc.

git-svn-id: http://svn.linuxfromscratch.org/LFS/trunk/BOOK@9200 4aa44e1e-78dd-0310-a6d2-fbcd4c07a689
This commit is contained in:
Bruce Dubbs 2010-02-22 17:48:30 +00:00
parent 182ec8e555
commit f7aeb473f8
5 changed files with 26 additions and 14 deletions

View File

@ -37,6 +37,22 @@
--> -->
<listitem>
<para>2010-02-22</para>
<itemizedlist>
<listitem>
<para>[bdubbs] Update to e2fsprogs-1.41.10. Fixes
<ulink url="&lfs-ticket-root;2576">#2576</ulink>. This
also reverts the changes made in response to
<ulink url="&lfs-ticket-root;2586">#2586</ulink>.</para>
</listitem>
<listitem>
<para>[bdubbs] Make more robust output in version check
for glibc.</para>
</listitem>
</itemizedlist>
</listitem>
<listitem> <listitem>
<para>2010-02-21</para> <para>2010-02-21</para>
<itemizedlist> <itemizedlist>

View File

@ -44,11 +44,6 @@
<sect2 role="installation"> <sect2 role="installation">
<title>Installation of E2fsprogs</title> <title>Installation of E2fsprogs</title>
<para>First fix a programming error:</para>
<screen><userinput remap="configure">sed -i -e '74i\
new_table->readline_shutdown = 0;' lib/ss/invocation.c</userinput></screen>
<para>The E2fsprogs documentation recommends that the package be built in <para>The E2fsprogs documentation recommends that the package be built in
a subdirectory of the source tree: </para> a subdirectory of the source tree: </para>

View File

@ -1,5 +1,5 @@
<!ENTITY version "SVN-201002021"> <!ENTITY version "SVN-201002022">
<!ENTITY releasedate "February 21, 2010"> <!ENTITY releasedate "February 22, 2010">
<!ENTITY copyrightdate "1999-2010"><!-- jhalfs needs a literal dash, not &ndash; --> <!ENTITY copyrightdate "1999-2010"><!-- 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

@ -98,15 +98,16 @@
<!-- NOTE: When updating e2fsprogs, remember to check the list <!-- NOTE: When updating e2fsprogs, remember to check the list
of acceptable features that can be shown by debugfs in of acceptable features that can be shown by debugfs in
chapter02/creatingfilesystem.xml --> chapter02/creatingfilesystem.xml -->
<!ENTITY e2fsprogs-version "1.41.9"> <!ENTITY e2fsprogs-version "1.41.10">
<!ENTITY e2fsprogs-size "4,348 KB"> <!ENTITY e2fsprogs-size "4,363 KB">
<!ENTITY e2fsprogs-url "&sourceforge;e2fsprogs/e2fsprogs-&e2fsprogs-version;.tar.gz"> <!ENTITY e2fsprogs-url "&sourceforge;e2fsprogs/e2fsprogs-&e2fsprogs-version;.tar.gz">
<!ENTITY e2fsprogs-md5 "52f60a9e19a02f142f5546f1b5681927"> <!ENTITY e2fsprogs-md5 "f9c7bb5c036a119453ce02fa871038da">
<!ENTITY e2fsprogs-home "http://e2fsprogs.sourceforge.net/"> <!ENTITY e2fsprogs-home "http://e2fsprogs.sourceforge.net/">
<!--
<!ENTITY e2fsprogs-ch5-du "38 MB"> <!ENTITY e2fsprogs-ch5-du "38 MB">
<!ENTITY e2fsprogs-ch5-sbu "0.3 SBU"> <!ENTITY e2fsprogs-ch5-sbu "0.3 SBU"> -->
<!ENTITY e2fsprogs-ch6-du "41 MB testsuite included"> <!ENTITY e2fsprogs-ch6-du "45 MB testsuite included">
<!ENTITY e2fsprogs-ch6-sbu "0.7 SBU testsuite included"> <!ENTITY e2fsprogs-ch6-sbu "0.5 SBU testsuite included">
<!ENTITY expect-version "5.43.0"> <!ENTITY expect-version "5.43.0">
<!ENTITY expect-lib-version "5.43"> <!ENTITY expect-lib-version "5.43">

View File

@ -167,7 +167,7 @@ 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-7 /lib/libc.so.6 | 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