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 /chapter06/gcc.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 'chapter06/gcc.xml')
-rw-r--r-- | chapter06/gcc.xml | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/chapter06/gcc.xml b/chapter06/gcc.xml index de204c1f4..2e28c9ff1 100644 --- a/chapter06/gcc.xml +++ b/chapter06/gcc.xml @@ -56,7 +56,7 @@ Non-bootstrap builds omit this flag by default, so apply the following <para>The GCC documentation recommends building GCC outside of the source directory in a dedicated build directory:</para> -<screen><userinput>mkdir ../gcc-build +<screen><userinput>mkdir -v ../gcc-build cd ../gcc-build</userinput></screen> <para>Prepare GCC for compilation:</para> @@ -90,12 +90,12 @@ refer back to them as necessary.</para> <filename class="directory">/lib</filename> directory. To support those packages, create this symlink:</para> -<screen><userinput>ln -s ../usr/bin/cpp /lib</userinput></screen> +<screen><userinput>ln -sv ../usr/bin/cpp /lib</userinput></screen> <para>Many packages use the name <command>cc</command> to call the C compiler. To satisfy those packages, create a symlink:</para> -<screen><userinput>ln -s gcc /usr/bin/cc</userinput></screen> +<screen><userinput>ln -sv gcc /usr/bin/cc</userinput></screen> <note><para>At this point, it is strongly recommended to repeat the sanity check performed earlier in this chapter. Refer back to <xref |