diff options
author | Bruce Dubbs <bdubbs@linuxfromscratch.org> | 2016-01-25 00:03:45 +0000 |
---|---|---|
committer | Bruce Dubbs <bdubbs@linuxfromscratch.org> | 2016-01-25 00:03:45 +0000 |
commit | e408cb05608c2d009b2685f8302ef2a692c00266 (patch) | |
tree | c0758bfc682ae46f10ca0e26e6910750f908b0d9 | |
parent | e691c77d104a85344c76afc4bb6264a229d4c46d (diff) |
Update to coreutils-8.25. Fixes
Simplify bash installation procedures.
git-svn-id: http://svn.linuxfromscratch.org/LFS/trunk/BOOK@10988 4aa44e1e-78dd-0310-a6d2-fbcd4c07a689
-rw-r--r-- | chapter01/changelog.xml | 16 | ||||
-rw-r--r-- | chapter01/whatsnew.xml | 4 | ||||
-rw-r--r-- | chapter06/bash.xml | 7 | ||||
-rw-r--r-- | chapter06/chapter06.xml | 2 | ||||
-rw-r--r-- | chapter06/coreutils.xml | 13 | ||||
-rw-r--r-- | general.ent | 4 | ||||
-rw-r--r-- | packages.ent | 6 | ||||
-rw-r--r-- | patches.ent | 4 |
8 files changed, 32 insertions, 24 deletions
diff --git a/chapter01/changelog.xml b/chapter01/changelog.xml index d959d1b63..e6b9bfeab 100644 --- a/chapter01/changelog.xml +++ b/chapter01/changelog.xml @@ -36,7 +36,21 @@ </listitem> --> <listitem> - <para>2016-01-01</para> + <para>2016-01-24</para> + <itemizedlist> + <listitem> + <para>[bdubbs] - Update to coreutils-8.25. Fixes + <ulink url="&lfs-ticket-root;3880">#3880</ulink>.</para> + </listitem> + <listitem> + <para>[bdubbs] - Simplify bash installation procedures. Fixes + <ulink url="&lfs-ticket-root;3879">#3879</ulink>.</para> + </listitem> + </itemizedlist> + </listitem> + + <listitem> + <para>2016-01-17</para> <itemizedlist> <listitem> <para>[bdubbs] - Update to linux-4.4. Fixes diff --git a/chapter01/whatsnew.xml b/chapter01/whatsnew.xml index f5a8c713e..dab8a1b2b 100644 --- a/chapter01/whatsnew.xml +++ b/chapter01/whatsnew.xml @@ -52,9 +52,9 @@ <!--<listitem> <para>Check &check-version;</para> </listitem>--> - <!--<listitem> + <listitem> <para>Coreutils &coreutils-version;</para> - </listitem>--> + </listitem> <!--<listitem> <para>DejaGNU &dejagnu-version;</para> </listitem>--> diff --git a/chapter06/bash.xml b/chapter06/bash.xml index 73c67129a..77fc08c04 100644 --- a/chapter06/bash.xml +++ b/chapter06/bash.xml @@ -48,7 +48,6 @@ <para>Prepare Bash for compilation:</para> <screen><userinput remap="configure">./configure --prefix=/usr \ - --bindir=/bin \ --docdir=/usr/share/doc/bash-&bash-version; \ --without-bash-malloc \ --with-installed-readline</userinput></screen> @@ -84,9 +83,11 @@ <screen><userinput remap="test">su nobody -s /bin/bash -c "PATH=$PATH make tests"</userinput></screen> - <para>Install the package:</para> + <para>Install the package and move the main executable to + <filename class='directory'>/bin</filename>:</para> -<screen><userinput remap="install">make install</userinput></screen> +<screen><userinput remap="install">make install +mv -vf /usr/bin/bash /bin</userinput></screen> <para>Run the newly compiled <command>bash</command> program (replacing the one that is currently being executed):</para> diff --git a/chapter06/chapter06.xml b/chapter06/chapter06.xml index 765b916ef..264834493 100644 --- a/chapter06/chapter06.xml +++ b/chapter06/chapter06.xml @@ -41,7 +41,6 @@ <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="psmisc.xml"/> <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="procps.xml"/> <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="e2fsprogs.xml"/> - <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="coreutils.xml"/> <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="iana-etc.xml"/> <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="m4.xml"/> <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="bison.xml"/> @@ -62,6 +61,7 @@ <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="autoconf.xml"/> <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="automake.xml"/> + <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="coreutils.xml"/> <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="diffutils.xml"/> <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="gawk.xml"/> <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="findutils.xml"/> diff --git a/chapter06/coreutils.xml b/chapter06/coreutils.xml index 2103d4ec2..3635301fb 100644 --- a/chapter06/coreutils.xml +++ b/chapter06/coreutils.xml @@ -48,16 +48,9 @@ <para>POSIX requires that programs from Coreutils recognize character boundaries correctly even in multibyte locales. The following patch fixes - this non-compliance and other internationalization-related bugs. - <!--Afterwards make sure the timestamp for <filename>Makefile.in</filename> is - later than all other files to prevent a <command>make</command> - error:</para>--> - Afterwards disable a test that fails with the current version of perl.</para> + this non-compliance and other internationalization-related bugs.</para> -<screen><userinput remap="pre">patch -Np1 -i ../&coreutils-i18n-patch; -sed -i '/tests\/misc\/sort.pl/ d' Makefile.in</userinput></screen> - -<!--touch Makefile.in</userinput></screen>--> +<screen><userinput remap="pre">patch -Np1 -i ../&coreutils-i18n-patch;</userinput></screen> <note> <para>In the past, many bugs were found in this patch. When reporting new @@ -95,7 +88,7 @@ sed -i '/tests\/misc\/sort.pl/ d' Makefile.in</userinput></screen> <para>Compile the package:</para> -<screen><userinput remap="make">make</userinput></screen> +<screen><userinput remap="make">FORCE_UNSAFE_CONFIGURE=1 make</userinput></screen> <para>Skip down to <quote>Install the package</quote> if not running the test suite.</para> diff --git a/general.ent b/general.ent index 7d545cf1b..e9dcd00bf 100644 --- a/general.ent +++ b/general.ent @@ -1,7 +1,7 @@ -<!ENTITY version "SVN-20160117"> +<!ENTITY version "SVN-20160124"> <!ENTITY short-version "svn"> <!-- Used below in &blfs-book;. Change to x.y for release but not -rc releases --> -<!ENTITY releasedate "January 17, 2016"> +<!ENTITY releasedate "January 24, 2016"> <!ENTITY copyrightdate "1999-2016"><!-- jhalfs needs a literal dash, not – --> <!ENTITY milestone "7.9"> <!ENTITY generic-version "development"> <!-- Use "development", "testing", or "x.y[-pre{x}]" --> diff --git a/packages.ent b/packages.ent index 1601f3b57..5b59dc379 100644 --- a/packages.ent +++ b/packages.ent @@ -95,10 +95,10 @@ <!ENTITY check-ch5-du "10 MB"> <!ENTITY check-ch5-sbu "0.1 SBU"> -<!ENTITY coreutils-version "8.24"> -<!ENTITY coreutils-size "5,518 KB"> +<!ENTITY coreutils-version "8.25"> +<!ENTITY coreutils-size "5,591 KB"> <!ENTITY coreutils-url "&gnu;coreutils/coreutils-&coreutils-version;.tar.xz"> -<!ENTITY coreutils-md5 "40efdbce865d2458d8da0a9dcee7c16c"> +<!ENTITY coreutils-md5 "070e43ba7f618d747414ef56ab248a48"> <!ENTITY coreutils-home "&gnu-software;coreutils/"> <!ENTITY coreutils-ch5-du "132 MB"> <!ENTITY coreutils-ch5-sbu "0.7 SBU"> diff --git a/patches.ent b/patches.ent index f77874770..09b06bde2 100644 --- a/patches.ent +++ b/patches.ent @@ -15,8 +15,8 @@ <!ENTITY bzip2-docs-patch-size "1.6 KB"> <!ENTITY coreutils-i18n-patch "coreutils-&coreutils-version;-i18n-1.patch"> -<!ENTITY coreutils-i18n-patch-md5 "c6a5ccda1ca61de7c93b09d27a9a26d5"> -<!ENTITY coreutils-i18n-patch-size "141 KB"> +<!ENTITY coreutils-i18n-patch-md5 "7f871078956b20d4745fc197eb6ad3c5"> +<!ENTITY coreutils-i18n-patch-size "172 KB"> <!ENTITY glibc-upstream-patch "glibc-&glibc-version;-upstream_i386_fix-1.patch"> <!ENTITY glibc-upstream-patch-md5 "cfb3cb46074a833ac5729be79e4f2592"> |