diff options
Diffstat (limited to 'chapter05')
-rw-r--r-- | chapter05/bash.xml | 2 | ||||
-rw-r--r-- | chapter05/gcc-pass1.xml | 2 | ||||
-rw-r--r-- | chapter05/gcc-pass2.xml | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/chapter05/bash.xml b/chapter05/bash.xml index db5d5b4d7..60957b9c1 100644 --- a/chapter05/bash.xml +++ b/chapter05/bash.xml @@ -86,7 +86,7 @@ <para>Make a link for the programs that use <command>sh</command> for a shell:</para> -<screen><userinput remap="install">ln -vs bash /tools/bin/sh</userinput></screen> +<screen><userinput remap="install">ln -sv bash /tools/bin/sh</userinput></screen> </sect2> diff --git a/chapter05/gcc-pass1.xml b/chapter05/gcc-pass1.xml index 0edcd87d2..b7f97a386 100644 --- a/chapter05/gcc-pass1.xml +++ b/chapter05/gcc-pass1.xml @@ -238,7 +238,7 @@ cd ../gcc-build</userinput></screen> since that file will end up containing the objects normally contained in <filename>libgcc_eh.a</filename>:</para> -<screen><userinput remap="install">ln -vs libgcc.a `$LFS_TGT-gcc -print-libgcc-file-name | sed 's/libgcc/&_eh/'`</userinput></screen> +<screen><userinput remap="install">ln -sv libgcc.a `$LFS_TGT-gcc -print-libgcc-file-name | sed 's/libgcc/&_eh/'`</userinput></screen> </sect2> diff --git a/chapter05/gcc-pass2.xml b/chapter05/gcc-pass2.xml index ee09e026c..9bbca7839 100644 --- a/chapter05/gcc-pass2.xml +++ b/chapter05/gcc-pass2.xml @@ -210,7 +210,7 @@ RANLIB=$LFS_TGT-ranlib \ <command>cc</command> leaves the system administrator free to decide which C compiler to install:</para> -<screen><userinput remap="install">ln -vs gcc /tools/bin/cc</userinput></screen> +<screen><userinput remap="install">ln -sv gcc /tools/bin/cc</userinput></screen> <caution> <para>At this point, it is imperative to stop and ensure that the basic |