[llvm-commits] [llvm-top] r39959 - /llvm-top/trunk/build

Reid Spencer rspencer at reidspencer.com
Mon Jul 16 22:07:17 PDT 2007


Author: reid
Date: Tue Jul 17 00:07:16 2007
New Revision: 39959

URL: http://llvm.org/viewvc/llvm-project?rev=39959&view=rev
Log:
Fix a typo bug that prevented build arguments from being passed down.

Modified:
    llvm-top/trunk/build

Modified: llvm-top/trunk/build
URL: http://llvm.org/viewvc/llvm-project/llvm-top/trunk/build?rev=39959&r1=39958&r2=39959&view=diff

==============================================================================
--- llvm-top/trunk/build (original)
+++ llvm-top/trunk/build Tue Jul 17 00:07:16 2007
@@ -37,7 +37,7 @@
       BUILD_OPTS="$BUILD_ARGS $arg"
       ;;
     *=*)
-      BUILD_PARMS="$BUILD_PARAMS $arg"
+      BUILD_PARAMS="$BUILD_PARAMS $arg"
       ;;
     *)
       MODULE_NAMES="$MODULE_NAMES $arg"
@@ -60,8 +60,8 @@
   fi
   build_command="$MODULE_INFO_VALUE"
   build_command="$build_command $BUILD_OPTS"
-  build_command="$build_command LLVM_TOP=$LLVM_TOP PREFIX=$INSTALL_PREFIX" 
-  build_command="$build_command $BUILD_PARAMS"
+  build_command="$build_command MODULE="$module" LLVM_TOP=$LLVM_TOP "
+  build_command="$build_command PREFIX=$INSTALL_PREFIX $BUILD_PARAMS" 
   msg 1 "Building Module $module with this command:"
   msg 1 "  $build_command"
   cd $module





More information about the llvm-commits mailing list