diff options
author | Gerard Beekmans <gerard@linuxfromscratch.org> | 2001-01-26 16:52:58 +0000 |
---|---|---|
committer | Gerard Beekmans <gerard@linuxfromscratch.org> | 2001-01-26 16:52:58 +0000 |
commit | d1e1e60b18216eaa7bb6f182b71f2fe335a6a7d3 (patch) | |
tree | 47796c6f424e5d594c990c81a7b2aa3439bcca37 /chapter03 | |
parent | 6a5de1ba547401142790908caeeaca83c8f2a3f0 (diff) |
Changed "mkdir ... dev dev/pts ..." to "mkdir -p ... dev/pts ..."
git-svn-id: http://svn.linuxfromscratch.org/LFS/trunk/BOOK@30 4aa44e1e-78dd-0310-a6d2-fbcd4c07a689
Diffstat (limited to 'chapter03')
-rw-r--r-- | chapter03/creatingdirs.sgml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/chapter03/creatingdirs.sgml b/chapter03/creatingdirs.sgml index 4bc44e3e9..59ca1327f 100644 --- a/chapter03/creatingdirs.sgml +++ b/chapter03/creatingdirs.sgml @@ -11,8 +11,8 @@ Issuing the following commands will create the necessary directories: <blockquote><literallayout> <userinput>cd $LFS</userinput> - <userinput>mkdir bin boot dev dev/pts etc home lib mnt proc root sbin tmp - var</userinput> + <userinput>mkdir -p bin boot dev/pts etc home lib mnt proc root sbin + tmp var</userinput> <userinput>for dirname in $LFS/usr $LFS/usr/local</userinput> <userinput><literal> do</literal></userinput> <userinput> mkdir $dirname</userinput> |