[llvm-commits] [dragonegg] r101770 - in /dragonegg/trunk/extras: buildbot_self_strap buildbot_self_strap-32 do_self_strap

Duncan Sands baldrick at free.fr
Mon Apr 19 01:18:57 PDT 2010


Author: baldrick
Date: Mon Apr 19 03:18:57 2010
New Revision: 101770

URL: http://llvm.org/viewvc/llvm-project?rev=101770&view=rev
Log:
Run "svn cleanup" in the buildbot specific scripts, rather than doing
this potentially dangerous operation in the generic self-host script
that people may use directly.

Modified:
    dragonegg/trunk/extras/buildbot_self_strap
    dragonegg/trunk/extras/buildbot_self_strap-32
    dragonegg/trunk/extras/do_self_strap

Modified: dragonegg/trunk/extras/buildbot_self_strap
URL: http://llvm.org/viewvc/llvm-project/dragonegg/trunk/extras/buildbot_self_strap?rev=101770&r1=101769&r2=101770&view=diff
==============================================================================
--- dragonegg/trunk/extras/buildbot_self_strap (original)
+++ dragonegg/trunk/extras/buildbot_self_strap Mon Apr 19 03:18:57 2010
@@ -14,4 +14,5 @@
 export GCC_OPTIONS="--enable-languages=c,c++,fortran,objc,obj-c++ --with-mpfr=/opt/cfarm/mpfr-2.4.1 --with-gmp=/opt/cfarm/gmp-4.2.4 --with-mpc=/opt/cfarm/mpc-0.8 --with-libelf=/opt/cfarm/libelf-0.8.12"
 
 cd $BUILD_DIR
+svn cleanup gcc # In case a previous run was interrupted while checking out gcc
 $DRAGONEGG_SOURCE/extras/do_self_strap

Modified: dragonegg/trunk/extras/buildbot_self_strap-32
URL: http://llvm.org/viewvc/llvm-project/dragonegg/trunk/extras/buildbot_self_strap-32?rev=101770&r1=101769&r2=101770&view=diff
==============================================================================
--- dragonegg/trunk/extras/buildbot_self_strap-32 (original)
+++ dragonegg/trunk/extras/buildbot_self_strap-32 Mon Apr 19 03:18:57 2010
@@ -18,4 +18,5 @@
 export LLVM_OPTIONS="--build=i686-pc-linux-gnu"
 
 cd $BUILD_DIR
+svn cleanup gcc # In case a previous run was interrupted while checking out gcc
 $DRAGONEGG_SOURCE/extras/do_self_strap

Modified: dragonegg/trunk/extras/do_self_strap
URL: http://llvm.org/viewvc/llvm-project/dragonegg/trunk/extras/do_self_strap?rev=101770&r1=101769&r2=101770&view=diff
==============================================================================
--- dragonegg/trunk/extras/do_self_strap (original)
+++ dragonegg/trunk/extras/do_self_strap Mon Apr 19 03:18:57 2010
@@ -98,8 +98,6 @@
   svn co -r $GCC_REVISION svn://gcc.gnu.org/svn/gcc/trunk $GCC_SOURCE
 elif [ ! -L $GCC_SOURCE ] ; then	# Do not update symbolic links.  This is
 					# for the benefit of the buildbots.
-  echo "Running svn cleanup"
-  svn cleanup $GCC_SOURCE
   echo "Reverting any applied patches"
   svn revert -R $GCC_SOURCE/gcc
   echo "Updating GCC"





More information about the llvm-commits mailing list