aboutsummaryrefslogtreecommitdiffstats
path: root/chapter06/createfiles.xml
diff options
context:
space:
mode:
authorTimothy Bauscher <timothy@linuxfromscratch.org>2002-09-08 21:54:14 +0000
committerTimothy Bauscher <timothy@linuxfromscratch.org>2002-09-08 21:54:14 +0000
commit44c2fd8fabfe36ee9f8464a04e4f2db42d956ab0 (patch)
treef0b7999af8b8df672ef8b32eead12396e7e11022 /chapter06/createfiles.xml
parentcb33ea82fe0338e3854a50bb252cbdc818679b36 (diff)
Applied Alex\'s grammar patch
git-svn-id: http://svn.linuxfromscratch.org/LFS/trunk/BOOK@2082 4aa44e1e-78dd-0310-a6d2-fbcd4c07a689
Diffstat (limited to 'chapter06/createfiles.xml')
-rw-r--r--chapter06/createfiles.xml9
1 files changed, 5 insertions, 4 deletions
diff --git a/chapter06/createfiles.xml b/chapter06/createfiles.xml
index d71a19491..47ccefb90 100644
--- a/chapter06/createfiles.xml
+++ b/chapter06/createfiles.xml
@@ -3,11 +3,12 @@
<?dbhtml filename="createfiles.html" dir="chapter06"?>
<para>Some programs hard-wire paths to programs which don't exist yet. In
-order to satisfy these programs, we create the <filename>/bin/bash</filename>
-and <filename>/bin/sh</filename> symlinks.</para>
+order to satisfy these programs, we create the symbolic links
+<filename>/bin/bash</filename> and <filename>/bin/sh</filename>, both
+pointing to the static <filename>bash</filename> program.</para>
-<para>Create the /bin/bash and /bin/sh symlinks by running the following
-commands:</para>
+<para>Create the <filename>/bin/bash</filename> and <filename>/bin/sh</filename>
+symlinks by running the following commands:</para>
<para><screen><userinput>ln -s /static/bin/bash /bin/bash &amp;&amp;
ln -s bash /bin/sh</userinput></screen></para>