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 \$@