From f19e766a8ee9b64cb06165842bdd56f94f61f1a3 Mon Sep 17 00:00:00 2001 From: Ken Moffat Date: Sun, 24 Jun 2007 13:03:35 +0000 Subject: Add missing colons wherever we expect the builder to key in the userinput. git-svn-id: http://svn.linuxfromscratch.org/LFS/trunk/BOOK@8174 4aa44e1e-78dd-0310-a6d2-fbcd4c07a689 --- chapter05/adjusting.xml | 4 ++-- chapter05/expect.xml | 2 +- chapter05/gcc-pass1.xml | 2 +- chapter05/gcc-pass2.xml | 2 +- 4 files changed, 5 insertions(+), 5 deletions(-) (limited to 'chapter05') diff --git a/chapter05/adjusting.xml b/chapter05/adjusting.xml index 4e9727fc7..bad013455 100644 --- a/chapter05/adjusting.xml +++ b/chapter05/adjusting.xml @@ -19,7 +19,7 @@ to be renamed so that it can be properly found and used. First, backup the original linker, then replace it with the adjusted linker. We'll also create a link to its counterpart in - /tools/$(gcc -dumpmachine)/bin + /tools/$(gcc -dumpmachine)/bin: mv -v /tools/bin/{ld,ld-old} mv -v /tools/$(gcc -dumpmachine)/bin/{ld,ld-old} @@ -37,7 +37,7 @@ ln -sv /tools/bin/ld /tools/$(gcc -dumpmachine)/bin/ld For the sake of accuracy, it is recommended to use a copy-and-paste method when issuing the following command. Be sure to visually inspect the specs file and verify that all occurrences of /lib/ld-linux.so.2 - have been replaced with /tools/lib/ld-linux.so.2. + have been replaced with /tools/lib/ld-linux.so.2: If working on a platform where the name of the dynamic linker is diff --git a/chapter05/expect.xml b/chapter05/expect.xml index 4d92964c1..c813839fe 100644 --- a/chapter05/expect.xml +++ b/chapter05/expect.xml @@ -43,7 +43,7 @@ Next, force Expect's configure script to use /bin/stty instead of a /usr/local/bin/stty it may find on the host system. This will ensure that our testsuite tools remain sane for the final builds of our - toolchain. + toolchain: cp configure{,.bak} sed 's:/usr/local/bin:/bin:' configure.bak > configure diff --git a/chapter05/gcc-pass1.xml b/chapter05/gcc-pass1.xml index 7f2354fdd..75331bed3 100644 --- a/chapter05/gcc-pass1.xml +++ b/chapter05/gcc-pass1.xml @@ -131,7 +131,7 @@ cd ../gcc-build used to keep programs generic and therefore usable on all kinds of UNIX systems where the GNU C compiler is not always installed. Running cc leaves the system administrator free to decide - which C compiler to install. + which C compiler to install: ln -vs gcc /tools/bin/cc diff --git a/chapter05/gcc-pass2.xml b/chapter05/gcc-pass2.xml index df1dd5094..92874a456 100644 --- a/chapter05/gcc-pass2.xml +++ b/chapter05/gcc-pass2.xml @@ -78,7 +78,7 @@ sed 's@\./fixinc\.sh@-c true@' gcc/Makefile.in.orig > gcc/Makefile.in-fomit-frame-pointer compiler flag. Non-bootstrap builds omit this flag by default, so apply the following sed to use it in order to ensure consistent compiler - builds. + builds: cp -v gcc/Makefile.in{,.tmp} && sed 's/^XCFLAGS =$/& -fomit-frame-pointer/' gcc/Makefile.in.tmp \ -- cgit v1.2.3-54-g00ecf