aboutsummaryrefslogtreecommitdiffstats
path: root/chapter05
diff options
context:
space:
mode:
authorJeremy Huntwork <jhuntwork@linuxfromscratch.org>2005-11-15 00:58:01 +0000
committerJeremy Huntwork <jhuntwork@linuxfromscratch.org>2005-11-15 00:58:01 +0000
commitfeaa22cd75b8a111acdad9fc508021e71b4a42bd (patch)
treecac58d4275baf6487584a1182fba04651d565bd4 /chapter05
parentba098b62b0afc86a89e278aef2633a0c46dcf538 (diff)
Made the removal of the GCC_INCLUDEDIR files more verbose. Thanks to Mike Hernandez.
git-svn-id: http://svn.linuxfromscratch.org/LFS/trunk/BOOK@7153 4aa44e1e-78dd-0310-a6d2-fbcd4c07a689
Diffstat (limited to 'chapter05')
-rw-r--r--chapter05/adjusting.xml2
1 files changed, 1 insertions, 1 deletions
diff --git a/chapter05/adjusting.xml b/chapter05/adjusting.xml
index 24a58c8ac..b97669497 100644
--- a/chapter05/adjusting.xml
+++ b/chapter05/adjusting.xml
@@ -76,7 +76,7 @@ their length):</para>
<!-- && used to ease copy and pasting -->
<screen><userinput>GCC_INCLUDEDIR=`dirname $(gcc -print-libgcc-file-name)`/include &amp;&amp;
-find ${GCC_INCLUDEDIR}/* -maxdepth 0 -xtype d -exec rm -rf '{}' \; &amp;&amp;
+find ${GCC_INCLUDEDIR}/* -maxdepth 0 -xtype d -exec rm -rvf '{}' \; &amp;&amp;
rm -vf `grep -l "DO NOT EDIT THIS FILE" ${GCC_INCLUDEDIR}/*` &amp;&amp;
unset GCC_INCLUDEDIR</userinput></screen>