aboutsummaryrefslogtreecommitdiffstats
path: root/chapter05
diff options
context:
space:
mode:
authorGerard Beekmans <gerard@linuxfromscratch.org>2001-08-30 22:52:33 +0000
committerGerard Beekmans <gerard@linuxfromscratch.org>2001-08-30 22:52:33 +0000
commit69108682754c1f7517ef87c9a4f2674dd5994ddc (patch)
treed73dc1cebe74d1615a1ecbd8f6517bf6b866665b /chapter05
parent68a2506525a2331a0f81bdfb1bcb91205ffbaa36 (diff)
removed -f flags from cp
git-svn-id: http://svn.linuxfromscratch.org/LFS/trunk/BOOK@1134 4aa44e1e-78dd-0310-a6d2-fbcd4c07a689
Diffstat (limited to 'chapter05')
-rw-r--r--chapter05/kernel-exp.xml4
-rw-r--r--chapter05/kernel-inst.xml4
2 files changed, 4 insertions, 4 deletions
diff --git a/chapter05/kernel-exp.xml b/chapter05/kernel-exp.xml
index 99890c9ed..4344904a2 100644
--- a/chapter05/kernel-exp.xml
+++ b/chapter05/kernel-exp.xml
@@ -20,8 +20,8 @@ checks, but what we do care about is that make dep creates those
aforementioned files in $LFS/usr/src/linux/include/linux we will be
needing later on.</para>
-<para><userinput>cp -af ../src/linux/include/linux .</userinput> and
-<userinput>mkdir asm &amp;&amp; cp -af ../src/linux/include/asm/* .</userinput>:
+<para><userinput>cp -a ../src/linux/include/linux .</userinput> and
+<userinput>mkdir asm &amp;&amp; cp -a ../src/linux/include/asm/* .</userinput>:
These commands copy the kernel headers in the
<filename>$LFS/usr/include</filename> directory.</para>
diff --git a/chapter05/kernel-inst.xml b/chapter05/kernel-inst.xml
index 12b4ac51e..3ac2f4e01 100644
--- a/chapter05/kernel-inst.xml
+++ b/chapter05/kernel-inst.xml
@@ -14,10 +14,10 @@ command:</para>
<userinput>yes "" | make config &amp;&amp;</userinput>
<userinput>make dep &amp;&amp;</userinput>
<userinput>cd $LFS/usr/include &amp;&amp;</userinput>
-<userinput>cp -af ../src/linux/include/linux . &amp;&amp;</userinput>
+<userinput>cp -a ../src/linux/include/linux . &amp;&amp;</userinput>
<userinput>chown -R root.root $LFS/usr/include/linux &amp;&amp;</userinput>
<userinput>mkdir asm &amp;&amp;</userinput>
-<userinput>cp -af ../src/linux/include/asm/* asm &amp;&amp;</userinput>
+<userinput>cp -a ../src/linux/include/asm/* asm &amp;&amp;</userinput>
<userinput>chown -R root.root $LFS/usr/include/asm</userinput></screen></para>
</sect2>