[llvm-commits] [llvm-gcc-4.2] r141519 - /llvm-gcc-4.2/trunk/extras/buildbot-launcher
Galina Kistanova
gkistanova at gmail.com
Sun Oct 9 15:27:57 PDT 2011
Author: gkistanova
Date: Sun Oct 9 17:27:57 2011
New Revision: 141519
URL: http://llvm.org/viewvc/llvm-project?rev=141519&view=rev
Log:
Change script to work with new master.
Modified:
llvm-gcc-4.2/trunk/extras/buildbot-launcher
Modified: llvm-gcc-4.2/trunk/extras/buildbot-launcher
URL: http://llvm.org/viewvc/llvm-project/llvm-gcc-4.2/trunk/extras/buildbot-launcher?rev=141519&r1=141518&r2=141519&view=diff
==============================================================================
--- llvm-gcc-4.2/trunk/extras/buildbot-launcher (original)
+++ llvm-gcc-4.2/trunk/extras/buildbot-launcher Sun Oct 9 17:27:57 2011
@@ -4,13 +4,9 @@
set -o pipefail # Return the first non-zero pipe command error.
set -x # Print commands as they are executed
-# The fist 4 parameters are consumed by this script and they are:
+# The fist 2 parameters are consumed by this script and they are:
BUILD_SCRIPT=$1 # Build script name to launch
shift
-LLVM_SOURCE=$1 # Directory name where the LLVM source code is.
-shift
-LLVM_GCC_SOURCE=$1 # Directory name where the LLVM-GCC source code is.
-shift
BUILD_DIR=$1 # Path to the build root directory.
shift
# The rest of the parameters will pass through.
@@ -18,14 +14,5 @@
# The build script expects to be run from the build root directory.
cd $BUILD_DIR
-# The build script expects source code directories in certain place with
-# certain names. Create link only if target directory or link does not exist.
-if [ ! -d $BUILD_DIR/llvm.src ] ; then
- ln -sf $LLVM_SOURCE $BUILD_DIR/llvm.src
-fi
-if [ ! -d $BUILD_DIR/llvm-gcc.src ] ; then
- ln -sf $LLVM_GCC_SOURCE $BUILD_DIR/llvm-gcc.src
-fi
-
# Launch the build script with all the remaining parameters
$BUILD_SCRIPT $@
More information about the llvm-commits
mailing list