diff options
author | Bruce Dubbs <bdubbs@linuxfromscratch.org> | 2019-08-04 21:15:40 +0000 |
---|---|---|
committer | Bruce Dubbs <bdubbs@linuxfromscratch.org> | 2019-08-04 21:15:40 +0000 |
commit | fb4e1d41658286dba876e75a983100a3e37cdc84 (patch) | |
tree | 686b7f1b53a8a07b21a17fa4aed30c1daa181b21 | |
parent | 3f01429fb3105061ca7462e40c378928a8d7f93c (diff) |
Fix a problem introduced by linux-5.2 by adding an include file to a glibc header.
git-svn-id: http://svn.linuxfromscratch.org/LFS/trunk/BOOK@11651 4aa44e1e-78dd-0310-a6d2-fbcd4c07a689
-rw-r--r-- | chapter01/changelog.xml | 10 | ||||
-rw-r--r-- | chapter06/glibc.xml | 10 | ||||
-rw-r--r-- | general.ent | 4 |
3 files changed, 17 insertions, 7 deletions
diff --git a/chapter01/changelog.xml b/chapter01/changelog.xml index 5c2e6ee0f..f96be8fdd 100644 --- a/chapter01/changelog.xml +++ b/chapter01/changelog.xml @@ -44,6 +44,16 @@ --> <listitem> + <para>2019-08-04</para> + <itemizedlist> + <listitem> + <para>[bdubbs] - Fix a problem introduced by linux-5.2 by + adding an include file to a glibc header.</para> + </listitem> + </itemizedlist> + </listitem> + + <listitem> <para>2019-08-03</para> <itemizedlist> <listitem revision="systemd"> diff --git a/chapter06/glibc.xml b/chapter06/glibc.xml index 93d83f80f..9af4e6335 100644 --- a/chapter06/glibc.xml +++ b/chapter06/glibc.xml @@ -60,12 +60,12 @@ <para>Fix a minor security issue with glob functions:</para> <screen><userinput remap="pre">patch -Np1 -i ../&glibc-glob-patch;</userinput></screen> ---><!-- - <para>First create a compatibility symlink to avoid references to /tools in - our final glibc:</para> - -<screen><userinput remap="pre">ln -sfv /tools/lib/gcc /usr/lib</userinput></screen> --> + <para>Fix a problem introduced with the linux-5.2 kernel:</para> + +<screen><userinput remap="pre">sed -i '/asm.socket.h/a# include <linux/sockios.h>' \ + sysdeps/unix/sysv/linux/bits/socket.h</userinput></screen> + <para>Create a symlink for LSB compliance. Additionally, for x86_64, create a compatibility symlink required for the dynamic loader to function correctly:</para> diff --git a/general.ent b/general.ent index ae7cfb48c..7caf3818a 100644 --- a/general.ent +++ b/general.ent @@ -1,4 +1,4 @@ -<!ENTITY version "SVN-20190803"> +<!ENTITY version "SVN-20190804"> <!ENTITY short-version "svn"> <!-- Used below in &blfs-book; Change to x.y for release but not -rc releases --> <!ENTITY generic-version "development"> <!-- Use "development" or "x.y[-pre{x}]" --> @@ -7,7 +7,7 @@ <!ENTITY short-versiond "systemd"> <!ENTITY generic-versiond "systemd"> -<!ENTITY releasedate "August 3rd, 2019"> +<!ENTITY releasedate "August 4th, 2019"> <!ENTITY copyrightdate "1999-2019"><!-- jhalfs needs a literal dash, not – --> <!ENTITY milestone "9.0"> |