From 59988921ebad528d4b2ea1a78be81f5feee490d5 Mon Sep 17 00:00:00 2001 From: Matthew Burgess Date: Thu, 29 Sep 2005 20:55:40 +0000 Subject: Add -v to commands that accept it git-svn-id: http://svn.linuxfromscratch.org/LFS/trunk/BOOK@6913 4aa44e1e-78dd-0310-a6d2-fbcd4c07a689 --- chapter06/readline.xml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'chapter06/readline.xml') diff --git a/chapter06/readline.xml b/chapter06/readline.xml index f3180a46d..f9ba2bb2a 100644 --- a/chapter06/readline.xml +++ b/chapter06/readline.xml @@ -61,19 +61,19 @@ includes other fixes recommended by the Readline author. Give Readline's dynamic libraries more appropriate permissions: -chmod 755 /lib/lib{readline,history}.so* +chmod -v 755 /lib/lib{readline,history}.so* Now move the static libraries to a more appropriate location: -mv /lib/lib{readline,history}.a /usr/lib +mv -v /lib/lib{readline,history}.a /usr/lib Next, remove the .so files in /lib and relink them into /usr/lib. -rm /lib/lib{readline,history}.so -ln -sf ../../lib/libreadline.so.5 /usr/lib/libreadline.so -ln -sf ../../lib/libhistory.so.5 /usr/lib/libhistory.so +rm -v /lib/lib{readline,history}.so +ln -sfv ../../lib/libreadline.so.5 /usr/lib/libreadline.so +ln -sfv ../../lib/libhistory.so.5 /usr/lib/libhistory.so -- cgit v1.2.3-54-g00ecf