Update of /cvsroot/linux-vax/toolchain/scripts
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv29295
Modified Files:
build_toolchain.sh
Log Message:
- Allow to patch Linux sources, too.
Index: build_toolchain.sh
===================================================================
RCS file: /cvsroot/linux-vax/toolchain/scripts/build_toolchain.sh,v
retrieving revision 1.50
retrieving revision 1.51
diff -u -d -r1.50 -r1.51
--- build_toolchain.sh 31 Dec 2005 17:17:47 -0000 1.50
+++ build_toolchain.sh 31 Dec 2005 17:22:08 -0000 1.51
@@ -468,6 +468,11 @@
execute --restart 6 svn update -r "${TIMESTAMP_UCLIBC}"
popd
fi
+if [ "${DO_TIMESTAMP_LINUX}" -ne 0 ]; then
+ pushd "${LINUX_SRC}"
+ execute --restart 6 cvs -z9 update -d -P -D "${TIMESTAMP_LINUX}"
+ popd
+fi
#
# Patch sources with our local patches
@@ -477,6 +482,7 @@
[ "${DO_PATCHES_PORTS}" -ne 0 ] && execute try_patches.sh "ports" "${GLIBC_SRC}" "${VAX_PATCHES_PATH}"
[ "${DO_PATCHES_GLIBC}" -ne 0 ] && execute try_patches.sh "glibc" "${GLIBC_SRC}" "${VAX_PATCHES_PATH}"
[ "${DO_PATCHES_UCLIBC}" -ne 0 ] && execute try_patches.sh "uclibc" "${UCLIBC_SRC}" "${VAX_PATCHES_PATH}"
+[ "${DO_PATCHES_LINUX}" -ne 0 ] && execute try_patches.sh "linux" "${LINUX_SRC}" "${VAX_PATCHES_PATH}"
#
|