aboutsummaryrefslogtreecommitdiffstats
path: root/chapter06
diff options
context:
space:
mode:
Diffstat (limited to 'chapter06')
-rw-r--r--chapter06/groff.xml2
-rw-r--r--chapter06/kernfs.xml4
2 files changed, 3 insertions, 3 deletions
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