From 21ba4e3570c1c2524b0733d492ced9634b259353 Mon Sep 17 00:00:00 2001 From: Greg Schafer Date: Thu, 9 Oct 2003 23:22:07 +0000 Subject: Internal markup reworking to fix the extraneous whitespace problem in the "tidy generated" web site pages. Essentially replace all ocurrences of with (and of course the matching closing tags). git-svn-id: http://svn.linuxfromscratch.org/LFS/trunk/BOOK@2958 4aa44e1e-78dd-0310-a6d2-fbcd4c07a689 --- chapter06/binutils-inst.xml | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) (limited to 'chapter06/binutils-inst.xml') diff --git a/chapter06/binutils-inst.xml b/chapter06/binutils-inst.xml index 7ebec5652..81312fe4c 100644 --- a/chapter06/binutils-inst.xml +++ b/chapter06/binutils-inst.xml @@ -6,7 +6,7 @@ working properly inside the chroot environment. We will again quickly check that everything is set up correctly by performing a simple test: -expect -c "spawn ls" +expect -c "spawn ls" If you receive the message: @@ -31,17 +31,17 @@ or modifying them when building Binutils. The Binutils documentation recommends building Binutils outside of the source directory in a dedicated build directory: -mkdir ../binutils-build -cd ../binutils-build +mkdir ../binutils-build +cd ../binutils-build Now prepare Binutils for compilation: -../binutils-&binutils-version;/configure \ -    --prefix=/usr --enable-shared +../binutils-&binutils-version;/configure \ +    --prefix=/usr --enable-shared Compile the package: -make tooldir=/usr +make tooldir=/usr Normally, the tooldir (the directory where the executables end up) is set to $(exec_prefix)/$(target_alias), which expands @@ -53,7 +53,7 @@ generates code that can be executed on PowerPC machines). Test the results: -make check +make check The test suite notes from are still very much appropriate here. Be sure to refer back there should you have any @@ -61,12 +61,12 @@ doubts. Install the package: -make tooldir=/usr install +make tooldir=/usr install Install the libiberty header file that is needed by some packages: -cp ../binutils-&binutils-version;/include/libiberty.h /usr/include +cp ../binutils-&binutils-version;/include/libiberty.h /usr/include -- cgit v1.2.3-54-g00ecf