aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBruce Dubbs <bdubbs@linuxfromscratch.org>2013-11-18 23:44:37 +0000
committerBruce Dubbs <bdubbs@linuxfromscratch.org>2013-11-18 23:44:37 +0000
commitd659bf4682be1f5468bd95ebf3aad123a8f28404 (patch)
treede40fc0b02660a8717b82f0ad0edc27a4ee00ee5
parentf55c13ff879507b52aaf1388beeca425b5455eac (diff)
Minor editorial changes
git-svn-id: http://svn.linuxfromscratch.org/LFS/trunk/BOOK@10374 4aa44e1e-78dd-0310-a6d2-fbcd4c07a689
-rw-r--r--chapter05/glibc.xml2
-rw-r--r--chapter06/groff.xml2
-rw-r--r--chapter06/kernfs.xml4
-rw-r--r--prologue/hostreqs.xml7
4 files changed, 10 insertions, 5 deletions
diff --git a/chapter05/glibc.xml b/chapter05/glibc.xml
index 9ae8be8cd..2fa9ccad8 100644
--- a/chapter05/glibc.xml
+++ b/chapter05/glibc.xml
@@ -48,7 +48,7 @@
and install if they are not:</para>
<screen><userinput remap="pre">if [ ! -r /usr/include/rpc/types.h ]; then
- su -c 'mkdir -p /usr/include/rpc'
+ su -c 'mkdir -pv /usr/include/rpc'
su -c 'cp -v sunrpc/rpc/*.h /usr/include/rpc'
fi</userinput></screen>
diff --git a/chapter06/groff.xml b/chapter06/groff.xml
index dcc790c4a..7aaef076b 100644
--- a/chapter06/groff.xml
+++ b/chapter06/groff.xml
@@ -61,7 +61,7 @@
<para>Install the package:</para>
-<screen><userinput remap="install">mkdir -p /usr/share/doc/groff-1.22/pdf
+<screen><userinput remap="install">mkdir -pv /usr/share/doc/groff-1.22/pdf
make install</userinput></screen>
<para>Some documentation programs, such as <command>xman</command>,
diff --git a/chapter06/kernfs.xml b/chapter06/kernfs.xml
index 3e8d6d332..bfd583455 100644
--- a/chapter06/kernfs.xml
+++ b/chapter06/kernfs.xml
@@ -22,7 +22,7 @@
<para>Begin by creating directories onto which the file systems will be
mounted:</para>
-<screen><userinput>mkdir -v $LFS/{dev,proc,sys}</userinput></screen>
+<screen><userinput>mkdir -pv $LFS/{dev,proc,sys}</userinput></screen>
<sect2>
<title>Creating Initial Device Nodes</title>
@@ -107,7 +107,7 @@ mount -vt sysfs sysfs $LFS/sys</userinput></screen>
<screen><userinput>if [ -h $LFS/dev/shm ]; then
link=$(readlink $LFS/dev/shm)
- mkdir -p $LFS/$link
+ mkdir -pv $LFS/$link
mount -vt tmpfs shm $LFS/$link
unset link
else
diff --git a/prologue/hostreqs.xml b/prologue/hostreqs.xml
index 81d503efe..c793cf7cd 100644
--- a/prologue/hostreqs.xml
+++ b/prologue/hostreqs.xml
@@ -141,7 +141,11 @@
deviation from the instructions or additional patches to some
packages.</para>
- <para id="version-check">To see whether your host system has all the appropriate versions, and
+ <!-- Use an empty sect2 element to prevent a pdf warning. -->
+ <sect2 id="version-check">
+ <title> </title>
+
+ <para >To see whether your host system has all the appropriate versions, and
the ability to compile programs, run the following:</para>
<!-- ANY additional lines in the script cause a pdf rendering problem-->
@@ -191,4 +195,5 @@ EOF
bash version-check.sh</userinput></screen>
+</sect2>
</sect1>