mirror of
https://git.linuxfromscratch.org/lfs.git
synced 2025-08-11 05:55:44 +01:00
[Bug 150] Re-create /bin/sh symlink in chapter 6 + similar things
git-svn-id: http://svn.linuxfromscratch.org/LFS/trunk/BOOK@1371 4aa44e1e-78dd-0310-a6d2-fbcd4c07a689
This commit is contained in:
parent
8c5e7152f0
commit
60fd3bbd6f
@ -6,6 +6,10 @@
|
|||||||
|
|
||||||
<itemizedlist>
|
<itemizedlist>
|
||||||
|
|
||||||
|
<listitem><para>December 10th, 2001 [markh]: Chapter 6: Re-create
|
||||||
|
symlinks in bash, fileutils and gcc instructions to make the Chapter 6
|
||||||
|
instructions independent of those in chapter 5.</para></listitem>
|
||||||
|
|
||||||
<listitem><para>December 10th, 2001 [marcheerdink]: Chapter 5+6: Cleaned
|
<listitem><para>December 10th, 2001 [marcheerdink]: Chapter 5+6: Cleaned
|
||||||
up the sed commands to use the backup file that was created earlier instead
|
up the sed commands to use the backup file that was created earlier instead
|
||||||
of writing to an intermediate 'tmp~' file.</para></listitem>
|
of writing to an intermediate 'tmp~' file.</para></listitem>
|
||||||
|
@ -7,6 +7,8 @@
|
|||||||
--bindir=/bin &&
|
--bindir=/bin &&
|
||||||
make &&
|
make &&
|
||||||
make install &&
|
make install &&
|
||||||
|
cd /bin &&
|
||||||
|
ln -sf bash sh &&
|
||||||
exec /bin/bash --login</userinput></screen></para>
|
exec /bin/bash --login</userinput></screen></para>
|
||||||
|
|
||||||
</sect2>
|
</sect2>
|
||||||
|
@ -6,7 +6,9 @@
|
|||||||
<para><screen><userinput>./configure --prefix=/usr --bindir=/bin \
|
<para><screen><userinput>./configure --prefix=/usr --bindir=/bin \
|
||||||
--libexecdir=/bin &&
|
--libexecdir=/bin &&
|
||||||
make &&
|
make &&
|
||||||
make install</userinput></screen></para>
|
make install &&
|
||||||
|
cd /usr/bin &&
|
||||||
|
ln -sf ../../bin/install</userinput></screen></para>
|
||||||
|
|
||||||
</sect2>
|
</sect2>
|
||||||
|
|
||||||
|
@ -23,7 +23,13 @@ cd ../gcc-build &&
|
|||||||
../gcc-&gcc-version;/configure --prefix=/usr --enable-shared \
|
../gcc-&gcc-version;/configure --prefix=/usr --enable-shared \
|
||||||
--enable-languages=c,c++ --enable-threads=posix &&
|
--enable-languages=c,c++ --enable-threads=posix &&
|
||||||
make bootstrap &&
|
make bootstrap &&
|
||||||
make install</userinput></screen></para>
|
make install &&
|
||||||
|
cd /lib &&
|
||||||
|
ln -sf ../usr/bin/cpp &&
|
||||||
|
cd /usr/lib &&
|
||||||
|
ln -sf ../bin/cpp &&
|
||||||
|
cd /usr/bin &&
|
||||||
|
ln -sf gcc cc</userinput></screen></para>
|
||||||
|
|
||||||
</sect2>
|
</sect2>
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user