Update of /cvsroot/linux-vax/toolchain/scripts
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv28186
Modified Files:
README
Added Files:
update_upstream_cvs_sandboxes.sh
Log Message:
- This script updates all your upstream toolchain sandboxes.
Index: README
===================================================================
RCS file: /cvsroot/linux-vax/toolchain/scripts/README,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -d -r1.4 -r1.5
--- README 14 Apr 2005 20:33:47 -0000 1.4
+++ README 14 Apr 2005 20:41:39 -0000 1.5
@@ -53,6 +53,13 @@
mailing lists and coding standards there are *really* high.
+update_upstream_cvs_sandboxes.sh
+~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+This script will update all your checked-out upstream CVS sandboxes to
+their respective HEAD versions. You'd run it everytime before you start
+a build, prepare for hacking or whatever.
+
+
try_patches.sh
~~~~~~~~~~~~~~
This script gets three arguments (component (like binutils, gcc, glibc, ports),
--- NEW FILE: update_upstream_cvs_sandboxes.sh ---
#!/bin/sh
set -e
if [ ! -d "${UPSTREAM_SANDBOXES_PATH}" ]; then
echo "\$UPSTREAM_SANDBOXES_PATH isn't set--please source vax_toolchain_config to set it" >&2
exit 1
fi
for COMPONENT in binutils/binutils-upstream-HEAD \
glibc/libc-upstream-HEAD \
glibc/ports-upstream-HEAD \
gcc/gcc-upstream-HEAD; do
pushd "${UPSTREAM_SANDBOXES_PATH}/${COMPONENT}"
if ! cvs update -d -P; then
echo "Failed to update $COMPONENT" >&2
exit 1
fi
popd
done
|