removed -v switch from some commands, interfering with progress_bar output

This commit is contained in:
George Boudreau 2006-06-08 00:42:03 +00:00
parent c6653861dc
commit cee9568f3d

View file

@ -20,9 +20,9 @@ chapter4_Makefiles() {
cat << EOF cat << EOF
020-creatingtoolsdir: 020-creatingtoolsdir:
@\$(call echo_message, Building) @\$(call echo_message, Building)
@mkdir -v \$(MOUNT_PT)/tools && \\ @mkdir \$(MOUNT_PT)/tools && \\
rm -fv /tools && \\ rm -f /tools && \\
ln -sv \$(MOUNT_PT)/tools / && \\ ln -s \$(MOUNT_PT)/tools / && \\
touch \$@ touch \$@
021-addinguser: 020-creatingtoolsdir 021-addinguser: 020-creatingtoolsdir
@ -40,10 +40,10 @@ chapter4_Makefiles() {
022-settingenvironment: 021-addinguser 022-settingenvironment: 021-addinguser
@\$(call echo_message, Building) @\$(call echo_message, Building)
@if [ -f /home/lfs/.bashrc -a ! -f /home/lfs/.bashrc.XXX ]; then \\ @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; fi;
@if [ -f /home/lfs/.bash_profile -a ! -f /home/lfs/.bash_profile.XXX ]; then \\ @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; fi;
@echo "set +h" > /home/lfs/.bashrc && \\ @echo "set +h" > /home/lfs/.bashrc && \\
echo "umask 022" >> /home/lfs/.bashrc && \\ echo "umask 022" >> /home/lfs/.bashrc && \\
@ -438,10 +438,10 @@ clean-chapter789:
restore-lfs-env: restore-lfs-env:
@\$(call echo_message, Building) @\$(call echo_message, Building)
@if [ -f /home/lfs/.bashrc.XXX ]; then \\ @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; fi;
@if [ -f /home/lfs/.bash_profile.XXX ]; then \\ @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; fi;
@chown lfs:lfs /home/lfs/.bash* && \\ @chown lfs:lfs /home/lfs/.bash* && \\
touch \$@ touch \$@