aboutsummaryrefslogtreecommitdiffstats
path: root/chapter06/zlib.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 /chapter06/zlib.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 'chapter06/zlib.xml')
-rw-r--r--chapter06/zlib.xml6
1 files changed, 3 insertions, 3 deletions
diff --git a/chapter06/zlib.xml b/chapter06/zlib.xml
index c11a41f62..9e5369adf 100644
--- a/chapter06/zlib.xml
+++ b/chapter06/zlib.xml
@@ -57,8 +57,8 @@ class="extension">.so</filename> file in <filename
class="directory">/lib</filename>. We will remove it and relink it into
<filename class="directory">/usr/lib</filename>:</para>
-<screen><userinput>rm /lib/libz.so
-ln -sf ../../lib/libz.so.&zlib-version; /usr/lib/libz.so</userinput></screen>
+<screen><userinput>rm -v /lib/libz.so
+ln -sfv ../../lib/libz.so.&zlib-version; /usr/lib/libz.so</userinput></screen>
<para>Build the static library:</para>
@@ -75,7 +75,7 @@ make</userinput></screen>
<para>Fix the permissions on the static library:</para>
-<screen><userinput>chmod 644 /usr/lib/libz.a</userinput></screen>
+<screen><userinput>chmod -v 644 /usr/lib/libz.a</userinput></screen>
</sect2>