Fix util-linux utilising /stage1 headers and libs instead of the host's version.

git-svn-id: http://svn.linuxfromscratch.org/LFS/trunk/BOOK@2729 4aa44e1e-78dd-0310-a6d2-fbcd4c07a689
This commit is contained in:
Matthew Burgess 2003-09-03 20:24:31 +00:00
parent c058597b33
commit e991f768a2
2 changed files with 9 additions and 0 deletions

View File

@ -82,6 +82,9 @@
</itemizedlist>
</para></listitem>
<listitem><para>September 3rd, 2003 [matt]: Fixed issue with util-linux not
utilising headers and libraries installed in /stage1.</para></listitem>
<listitem><para>September 3rd, 2003 [matt]: Removed "rm /bin/pwd" instruction
from chapter06 kernel-headers installation as the link is still required by
glibc's installation.</para></listitem>

View File

@ -3,6 +3,12 @@
<sect2>
<title>Installation of Util-linux</title>
<para>Util-linux doesn't use the freshly installed headers and libraries from
the /stage1 directory. This is fixed by altering the configure script:</para>
<para><screen><userinput>cp configure configure.backup
sed "s@/usr/include@/stage1/include@g" configure.backup > configure</userinput> </screen></para>
<para>Prepare Util-linux for compilation:</para>
<para><screen><userinput>./configure</userinput></screen></para>