diff options
author | Matthew Burgess <matthew@linuxfromscratch.org> | 2005-09-29 20:55:40 +0000 |
---|---|---|
committer | Matthew Burgess <matthew@linuxfromscratch.org> | 2005-09-29 20:55:40 +0000 |
commit | 59988921ebad528d4b2ea1a78be81f5feee490d5 (patch) | |
tree | b66eb3c3de1bbad64774418afb69989e18641765 /chapter05/adjusting.xml | |
parent | 8c68addc8e21ceaec084545ee0ed6c983d054232 (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.xml | 6 |
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 && gcc -dumpspecs > $SPECFILE && sed 's@^/lib/ld-linux.so.2@/tools&@g' $SPECFILE > tempspecfile && -mv -f tempspecfile $SPECFILE && +mv -vf tempspecfile $SPECFILE && 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 && find ${GCC_INCLUDEDIR}/* -maxdepth 0 -xtype d -exec rm -rf '{}' \; && -rm -f `grep -l "DO NOT EDIT THIS FILE" ${GCC_INCLUDEDIR}/*` && +rm -vf `grep -l "DO NOT EDIT THIS FILE" ${GCC_INCLUDEDIR}/*` && 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> |