|
@@ -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
|