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

Duncan Sands baldrick at free.fr
Mon Apr 19 08:48:09 PDT 2010


Author: baldrick
Date: Mon Apr 19 10:48:09 2010
New Revision: 101780

URL: http://llvm.org/viewvc/llvm-project?rev=101780&view=rev
Log:
Only cleanup gcc if it exists.

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

Modified: dragonegg/trunk/extras/buildbot_self_strap
URL: http://llvm.org/viewvc/llvm-project/dragonegg/trunk/extras/buildbot_self_strap?rev=101780&r1=101779&r2=101780&view=diff
==============================================================================
--- dragonegg/trunk/extras/buildbot_self_strap (original)
+++ dragonegg/trunk/extras/buildbot_self_strap Mon Apr 19 10:48:09 2010
@@ -14,5 +14,7 @@
 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
+if [ -e gcc ] ; then
+	svn cleanup gcc # In case a previous run was interrupted while checking out gcc
+fi
 $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=101780&r1=101779&r2=101780&view=diff
==============================================================================
--- dragonegg/trunk/extras/buildbot_self_strap-32 (original)
+++ dragonegg/trunk/extras/buildbot_self_strap-32 Mon Apr 19 10:48:09 2010
@@ -18,5 +18,7 @@
 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
+if [ -e gcc ] ; then
+	svn cleanup gcc # In case a previous run was interrupted while checking out gcc
+fi
 $DRAGONEGG_SOURCE/extras/do_self_strap





More information about the llvm-commits mailing list