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/ncurses.xml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'chapter06/ncurses.xml') diff --git a/chapter06/ncurses.xml b/chapter06/ncurses.xml index 33ff5341d..f01229256 100644 --- a/chapter06/ncurses.xml +++ b/chapter06/ncurses.xml @@ -47,22 +47,22 @@ Gawk, GCC, Glibc, Grep, Make, and Sed Give the Ncurses libraries execute permissions: -chmod 755 /usr/lib/*.&ncurses-version; +chmod -v 755 /usr/lib/*.&ncurses-version; Fix a library that should not be executable: -chmod 644 /usr/lib/libncurses++.a +chmod -v 644 /usr/lib/libncurses++.a Move the libraries to the /lib directory, where they are expected to reside: -mv /usr/lib/libncurses.so.5* /lib +mv -v /usr/lib/libncurses.so.5* /lib Because the libraries have been moved, a few symlinks point to non-existent files. Recreate those symlinks: -ln -sf ../../lib/libncurses.so.5 /usr/lib/libncurses.so -ln -sf libncurses.so /usr/lib/libcurses.so +ln -sfv ../../lib/libncurses.so.5 /usr/lib/libncurses.so +ln -sfv libncurses.so /usr/lib/libcurses.so -- cgit v1.2.3-54-g00ecf