From 6458e3172ec9d054efcd178c67f269804eacdb7d Mon Sep 17 00:00:00 2001 From: Matthew Burgess Date: Fri, 29 Mar 2013 19:50:55 +0000 Subject: Fix the alignment of some command continuation constructs. git-svn-id: http://svn.linuxfromscratch.org/LFS/trunk/BOOK@10233 4aa44e1e-78dd-0310-a6d2-fbcd4c07a689 --- chapter06/adjusting.xml | 4 ++-- chapter06/glibc.xml | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) (limited to 'chapter06') diff --git a/chapter06/adjusting.xml b/chapter06/adjusting.xml index 1a58b1dbb..48057ee6c 100644 --- a/chapter06/adjusting.xml +++ b/chapter06/adjusting.xml @@ -30,9 +30,9 @@ ln -sv /tools/bin/ld /tools/$(gcc -dumpmachine)/bin/ld so that GCC knows where to find the correct headers and Glibc start files. A sed command accomplishes this: -gcc -dumpspecs | sed -e 's@/tools@@g' \ +gcc -dumpspecs | sed -e 's@/tools@@g' \ -e '/\*startfile_prefix_spec:/{n;s@.*@/usr/lib/ @}' \ - -e '/\*cpp:/{n;s@$@ -isystem /usr/include@}' > \ + -e '/\*cpp:/{n;s@$@ -isystem /usr/include@}' & \ `dirname $(gcc --print-libgcc-file-name)`/specs It is a good idea to visually inspect the specs file to verify the diff --git a/chapter06/glibc.xml b/chapter06/glibc.xml index 449f3a76a..b3fb46f2e 100644 --- a/chapter06/glibc.xml +++ b/chapter06/glibc.xml @@ -69,7 +69,7 @@ cd ../glibc-build Prepare Glibc for compilation: -../glibc-&glibc-version;/configure \ +../glibc-&glibc-version;/configure \ --prefix=/usr \ --disable-profile \ --enable-kernel=2.6.25 \ -- cgit v1.2.3-54-g00ecf