aboutsummaryrefslogtreecommitdiffstats
path: root/chapter05
diff options
context:
space:
mode:
authorGerard Beekmans <gerard@linuxfromscratch.org>2003-05-11 02:44:11 +0000
committerGerard Beekmans <gerard@linuxfromscratch.org>2003-05-11 02:44:11 +0000
commite91d8ce6562e58872a291cd110c3f4608b30ce60 (patch)
tree2ac9e0bcb887f323d763e99c111465e35e75978c /chapter05
parent84a7dc232d8d21a757b84cbea5f41292a90344f8 (diff)
removed tooldir=/stage1. It makes the build unpure again
git-svn-id: http://svn.linuxfromscratch.org/LFS/trunk/BOOK@2553 4aa44e1e-78dd-0310-a6d2-fbcd4c07a689
Diffstat (limited to 'chapter05')
-rw-r--r--chapter05/binutils-pass1-inst.xml6
-rw-r--r--chapter05/binutils-pass2-inst.xml8
-rw-r--r--chapter05/lockingglibc.xml2
3 files changed, 8 insertions, 8 deletions
diff --git a/chapter05/binutils-pass1-inst.xml b/chapter05/binutils-pass1-inst.xml
index 1d97f1cfe..13f478daa 100644
--- a/chapter05/binutils-pass1-inst.xml
+++ b/chapter05/binutils-pass1-inst.xml
@@ -31,7 +31,7 @@ statically.</para></listitem>
<para>Continue with compiling the package:</para>
-<para><screen><userinput>make tooldir=/stage1 LDFLAGS="-all-static"</userinput></screen></para>
+<para><screen><userinput>make LDFLAGS="-all-static"</userinput></screen></para>
<para>The meaning of the make option is:</para>
@@ -47,10 +47,10 @@ variable.</para></listitem>
<para>And finish off installing the package:</para>
-<para><screen><userinput>make tooldir=/stage1 install</userinput></screen></para>
+<para><screen><userinput>make install</userinput></screen></para>
<para><screen><userinput>make -C ld clean
-make -C ld tooldir=/stage1 LIB_PATH=/stage1/lib</userinput></screen></para>
+make -C ld LIB_PATH=/stage1/lib</userinput></screen></para>
<para>Do not remove the binutils-* directories. We need them again
later on in this chapter.</para>
diff --git a/chapter05/binutils-pass2-inst.xml b/chapter05/binutils-pass2-inst.xml
index f12db20a4..87ca80ec6 100644
--- a/chapter05/binutils-pass2-inst.xml
+++ b/chapter05/binutils-pass2-inst.xml
@@ -8,12 +8,12 @@ mkdir ../binutils-build
cd ../binutils-build
../binutils-&binutils-version;/configure --prefix=/stage1 \
&nbsp;&nbsp;&nbsp;&nbsp;--enable-shared --with-lib-path=/stage1/lib
-make tooldir=/stage1
-make tooldir=/stage1 check
-make tooldir=/stage1 install</userinput></screen></para>
+make
+make check
+make install</userinput></screen></para>
<para><screen><userinput>make -C ld clean
-make -C ld tooldir=/stage1 LIB_PATH=/usr/lib:/lib</userinput></screen></para>
+make -C ld LIB_PATH=/usr/lib:/lib</userinput></screen></para>
<para>Do not remove the binutils-* directories after the installation.
We'll need this directory again in chapter 6 as-is.</para>
diff --git a/chapter05/lockingglibc.xml b/chapter05/lockingglibc.xml
index b306398be..95d086467 100644
--- a/chapter05/lockingglibc.xml
+++ b/chapter05/lockingglibc.xml
@@ -7,7 +7,7 @@
<sect2>
<title>Installation of Binutils</title>
-<para><screen><userinput>make -C ld tooldir=/stage1 install-data-local</userinput></screen></para>
+<para><screen><userinput>make -C ld install-data-local</userinput></screen></para>
<para>You can remove the binutils-* directories now.</para>