diff options
author | Gerard Beekmans <gerard@linuxfromscratch.org> | 2001-08-30 22:52:33 +0000 |
---|---|---|
committer | Gerard Beekmans <gerard@linuxfromscratch.org> | 2001-08-30 22:52:33 +0000 |
commit | 69108682754c1f7517ef87c9a4f2674dd5994ddc (patch) | |
tree | d73dc1cebe74d1615a1ecbd8f6517bf6b866665b /chapter05 | |
parent | 68a2506525a2331a0f81bdfb1bcb91205ffbaa36 (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.xml | 4 | ||||
-rw-r--r-- | chapter05/kernel-inst.xml | 4 |
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 && cp -af ../src/linux/include/asm/* .</userinput>: +<para><userinput>cp -a ../src/linux/include/linux .</userinput> and +<userinput>mkdir asm && 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 &&</userinput> <userinput>make dep &&</userinput> <userinput>cd $LFS/usr/include &&</userinput> -<userinput>cp -af ../src/linux/include/linux . &&</userinput> +<userinput>cp -a ../src/linux/include/linux . &&</userinput> <userinput>chown -R root.root $LFS/usr/include/linux &&</userinput> <userinput>mkdir asm &&</userinput> -<userinput>cp -af ../src/linux/include/asm/* asm &&</userinput> +<userinput>cp -a ../src/linux/include/asm/* asm &&</userinput> <userinput>chown -R root.root $LFS/usr/include/asm</userinput></screen></para> </sect2> |