From cee9568f3dc3c73138ab9c0e201b1b8e77d64422 Mon Sep 17 00:00:00 2001 From: George Boudreau Date: Thu, 8 Jun 2006 00:42:03 +0000 Subject: [PATCH] removed -v switch from some commands, interfering with progress_bar output --- LFS/master.sh | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/LFS/master.sh b/LFS/master.sh index 35befda..5a74991 100755 --- a/LFS/master.sh +++ b/LFS/master.sh @@ -20,9 +20,9 @@ chapter4_Makefiles() { cat << EOF 020-creatingtoolsdir: @\$(call echo_message, Building) - @mkdir -v \$(MOUNT_PT)/tools && \\ - rm -fv /tools && \\ - ln -sv \$(MOUNT_PT)/tools / && \\ + @mkdir \$(MOUNT_PT)/tools && \\ + rm -f /tools && \\ + ln -s \$(MOUNT_PT)/tools / && \\ touch \$@ 021-addinguser: 020-creatingtoolsdir @@ -40,10 +40,10 @@ chapter4_Makefiles() { 022-settingenvironment: 021-addinguser @\$(call echo_message, Building) @if [ -f /home/lfs/.bashrc -a ! -f /home/lfs/.bashrc.XXX ]; then \\ - mv -v /home/lfs/.bashrc /home/lfs/.bashrc.XXX; \\ + mv /home/lfs/.bashrc /home/lfs/.bashrc.XXX; \\ fi; @if [ -f /home/lfs/.bash_profile -a ! -f /home/lfs/.bash_profile.XXX ]; then \\ - mv -v /home/lfs/.bash_profile /home/lfs/.bash_profile.XXX; \\ + mv /home/lfs/.bash_profile /home/lfs/.bash_profile.XXX; \\ fi; @echo "set +h" > /home/lfs/.bashrc && \\ echo "umask 022" >> /home/lfs/.bashrc && \\ @@ -438,10 +438,10 @@ clean-chapter789: restore-lfs-env: @\$(call echo_message, Building) @if [ -f /home/lfs/.bashrc.XXX ]; then \\ - mv -fv /home/lfs/.bashrc.XXX /home/lfs/.bashrc; \\ + mv -f /home/lfs/.bashrc.XXX /home/lfs/.bashrc; \\ fi; @if [ -f /home/lfs/.bash_profile.XXX ]; then \\ - mv -v /home/lfs/.bash_profile.XXX /home/lfs/.bash_profile; \\ + mv /home/lfs/.bash_profile.XXX /home/lfs/.bash_profile; \\ fi; @chown lfs:lfs /home/lfs/.bash* && \\ touch \$@