From: Kenn H. <ke...@us...> - 2005-12-28 16:49:10
|
Update of /cvsroot/linux-vax/toolchain/scripts In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv9117 Modified Files: build_toolchain.sh Log Message: Include timestamps in the output Index: build_toolchain.sh =================================================================== RCS file: /cvsroot/linux-vax/toolchain/scripts/build_toolchain.sh,v retrieving revision 1.47 retrieving revision 1.48 diff -u -d -r1.47 -r1.48 --- build_toolchain.sh 21 Dec 2005 23:24:49 -0000 1.47 +++ build_toolchain.sh 28 Dec 2005 16:48:59 -0000 1.48 @@ -318,7 +318,7 @@ while [ "${RESTART_LOOP}" -le "${RESTART_MAX}" ]; do echo "#" echo "#" - echo "# Executing in `pwd` (run ${RESTART_LOOP}/${RESTART_MAX}):" + echo "# `date`: Executing in `pwd` (run ${RESTART_LOOP}/${RESTART_MAX}):" echo "# $*" echo "#" echo "#" @@ -329,7 +329,7 @@ set -e echo "#" - echo "# End of: $*" + echo "# `date`: End of: $*" echo "#" echo @@ -438,12 +438,12 @@ # # Copy pristine sources # -copy_directory.sh "${BINUTILS_CVS}" "${BINUTILS_SRC}" -copy_directory.sh "${GLIBC_PORTS_CVS}" "${GLIBC_SRC}" -copy_directory.sh "${GLIBC_CVS}" "${GLIBC_SRC}" -copy_directory.sh "${GCC_CVS}" "${GCC_SRC}" -copy_directory.sh "${LINUX_CVS}" "${LINUX_SRC}" -copy_directory.sh "${UCLIBC_SVN}" "${UCLIBC_SRC}" +echo -n "`date`: " ; copy_directory.sh "${BINUTILS_CVS}" "${BINUTILS_SRC}" +echo -n "`date`: " ; copy_directory.sh "${GLIBC_PORTS_CVS}" "${GLIBC_SRC}" +echo -n "`date`: " ; copy_directory.sh "${GLIBC_CVS}" "${GLIBC_SRC}" +echo -n "`date`: " ; copy_directory.sh "${GCC_CVS}" "${GCC_SRC}" +echo -n "`date`: " ; copy_directory.sh "${LINUX_CVS}" "${LINUX_SRC}" +echo -n "`date`: " ; copy_directory.sh "${UCLIBC_SVN}" "${UCLIBC_SRC}" # # Possibly force specific CVS timestamps |