aboutsummaryrefslogtreecommitdiffstats
path: root/chapter05/adjusting.xml
diff options
context:
space:
mode:
authorMatthew Burgess <matthew@linuxfromscratch.org>2005-09-29 20:55:40 +0000
committerMatthew Burgess <matthew@linuxfromscratch.org>2005-09-29 20:55:40 +0000
commit59988921ebad528d4b2ea1a78be81f5feee490d5 (patch)
treeb66eb3c3de1bbad64774418afb69989e18641765 /chapter05/adjusting.xml
parent8c68addc8e21ceaec084545ee0ed6c983d054232 (diff)
Add -v to commands that accept it
git-svn-id: http://svn.linuxfromscratch.org/LFS/trunk/BOOK@6913 4aa44e1e-78dd-0310-a6d2-fbcd4c07a689
Diffstat (limited to 'chapter05/adjusting.xml')
-rw-r--r--chapter05/adjusting.xml6
1 files changed, 3 insertions, 3 deletions
diff --git a/chapter05/adjusting.xml b/chapter05/adjusting.xml
index 1991bd36d..302c1e1cd 100644
--- a/chapter05/adjusting.xml
+++ b/chapter05/adjusting.xml
@@ -41,7 +41,7 @@ dynamic linker that GCC will use:</para>
<screen><userinput>SPECFILE=`dirname $(gcc -print-libgcc-file-name)`/specs &amp;&amp;
gcc -dumpspecs > $SPECFILE &amp;&amp;
sed 's@^/lib/ld-linux.so.2@/tools&amp;@g' $SPECFILE &gt; tempspecfile &amp;&amp;
-mv -f tempspecfile $SPECFILE &amp;&amp;
+mv -vf tempspecfile $SPECFILE &amp;&amp;
unset SPECFILE</userinput></screen>
<para>It is recommended that the above
@@ -69,7 +69,7 @@ This is explained in more detail later in this chapter. Run the following comman
<!-- && 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;
-rm -f `grep -l "DO NOT EDIT THIS FILE" ${GCC_INCLUDEDIR}/*` &amp;&amp;
+rm -vf `grep -l "DO NOT EDIT THIS FILE" ${GCC_INCLUDEDIR}/*` &amp;&amp;
unset GCC_INCLUDEDIR</userinput></screen>
<caution><para>At this point, it is imperative to stop and ensure that
@@ -109,7 +109,7 @@ commands.</para>
<para>Once all is well, clean up the test files:</para>
-<screen><userinput>rm dummy.c a.out</userinput></screen>
+<screen><userinput>rm -v dummy.c a.out</userinput></screen>
</caution>
</sect1>