diff options
author | Mark Hymers <markh@linuxfromscratch.org> | 2001-10-24 10:20:53 +0000 |
---|---|---|
committer | Mark Hymers <markh@linuxfromscratch.org> | 2001-10-24 10:20:53 +0000 |
commit | ef94a94b1d45532fc5a108397584c7a531c55c11 (patch) | |
tree | bba9989a177d53ec4cbdb8bca41a523650f7b0fa /chapter06 | |
parent | 3448e74e91cb48c965bfd2171f68f18465333a86 (diff) |
Fix spelling
git-svn-id: http://svn.linuxfromscratch.org/LFS/trunk/BOOK@1324 4aa44e1e-78dd-0310-a6d2-fbcd4c07a689
Diffstat (limited to 'chapter06')
-rw-r--r-- | chapter06/findutils-exp.xml | 2 | ||||
-rw-r--r-- | chapter06/glibc-exp.xml | 4 | ||||
-rw-r--r-- | chapter06/ncurses-exp.xml | 2 |
3 files changed, 4 insertions, 4 deletions
diff --git a/chapter06/findutils-exp.xml b/chapter06/findutils-exp.xml index e0c8c7cbc..d7eba25bb 100644 --- a/chapter06/findutils-exp.xml +++ b/chapter06/findutils-exp.xml @@ -2,7 +2,7 @@ <title>Command explanations</title> <para><userinput>patch -Np1 -i ../findutils-4.1.patch</userinput>: This -patch is to fix some compliation errors by +patch is to fix some compilation errors by avoiding a variable conflict and changing some bad syntax.</para> </sect2> diff --git a/chapter06/glibc-exp.xml b/chapter06/glibc-exp.xml index b1a154d97..121544cb0 100644 --- a/chapter06/glibc-exp.xml +++ b/chapter06/glibc-exp.xml @@ -14,7 +14,7 @@ will have Glibc default to using /lib and /usr/lib which is fine).</para> <para><userinput>sed 's%\$(PERL)%/usr/bin/perl%' malloc/Makefile > tmp~:</userinput> This sed command searches through <filename>malloc/Makefile</filename> and -converts all occurances of <filename>$(PERL)</filename> to +converts all occurences of <filename>$(PERL)</filename> to <filename>/usr/bin/perl</filename>. The output is then written to the file <filename>tmp~</filename>. This is done because Glibc can't autodetect perl since it hasn't been installed yet.</para> @@ -26,7 +26,7 @@ when using sed, we can't write straight back to this file so we need to use a temporary file in between.</para> <para><userinput>sed 's/root/0' login/Makefile > -tmp~:</userinput> This sed command replaces all occurances of +tmp~:</userinput> This sed command replaces all occurences of <filename>root</filename> in <filename>login/Makefile</filename> with 0. This is because as we don't have glibc on the LFS system yet, usernames can't diff --git a/chapter06/ncurses-exp.xml b/chapter06/ncurses-exp.xml index 6fb14ebc4..917f7f86d 100644 --- a/chapter06/ncurses-exp.xml +++ b/chapter06/ncurses-exp.xml @@ -14,7 +14,7 @@ system when /usr may not be mounted.</para> <para><userinput>chmod 755 *.5.2:</userinput> Shared libraries should be executable. Ncurses install routine doesn't set the permissions -properly so we do it manaully instead.</para> +properly so we do it manually instead.</para> <para><userinput>ln -sf libncurses.a libcurses.a:</userinput> Some programs try to link using -lcurses instead of -lncurses. This symlink |