Update of /cvsroot/linux-vax/toolchain/scripts
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv31122
Modified Files:
build_toolchain.sh
Log Message:
- Remove extra {}
- GCC is now manages by SVN, bye-bye CVS...
Index: build_toolchain.sh
===================================================================
RCS file: /cvsroot/linux-vax/toolchain/scripts/build_toolchain.sh,v
retrieving revision 1.30
retrieving revision 1.31
diff -u -d -r1.30 -r1.31
--- build_toolchain.sh 16 Nov 2005 12:00:41 -0000 1.30
+++ build_toolchain.sh 30 Nov 2005 16:53:16 -0000 1.31
@@ -437,7 +437,7 @@
fi
if [ "${DO_TIMESTAMP_GCC}" -ne 0 ]; then
pushd "${GCC_SRC}"
- execute --restart 6 cvs -z9 update -d -P -D "${TIMESTAMP_GCC}"
+ execute --restart 6 svn update -r "${TIMESTAMP_GCC}"
popd
fi
if [ "${DO_TIMESTAMP_GLIBC}" -ne 0 ]; then
@@ -448,7 +448,7 @@
if [ "${DO_TIMESTAMP_UCLIBC}" -ne 0 ]; then
pushd "${UCLIBC_SRC}"
echo "Updating sources with SVN to reflect the state of a given timestamp hasn't ever been tested\!" >&2
- execute --restart 6 svn update -r "{${TIMESTAMP_UCLIBC}}"
+ execute --restart 6 svn update -r "${TIMESTAMP_UCLIBC}"
popd
fi
|