diff options
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> |