List:Internals« Previous MessageNext Message »
From:lenz Date:July 6 2005 2:00pm
Subject:bk commit into 4.1 tree (lenz:1.2325)
View as plain text  
Below is the list of changes that have just been committed into a local
4.1 repository of lenz. When lenz does a push these changes will
be propagated to the main repository and, within 24 hours after the
push, to the public repository.
For information on how to access the public repository
see http://dev.mysql.com/doc/mysql/en/installing-source-tree.html

ChangeSet
  1.2325 05/07/06 14:00:24 lenz@stripped +1 -0
  Merge mysql.com:/space/my/mysql-4.0-build
  into mysql.com:/space/my/mysql-4.1-build

  scripts/make_binary_distribution.sh
    1.78 05/07/06 14:00:22 lenz@stripped +0 -0
    Auto merged

# This is a BitKeeper patch.  What follows are the unified diffs for the
# set of deltas contained in the patch.  The rest of the patch, the part
# that BitKeeper cares about, is below these diffs.
# User:	lenz
# Host:	metis.lenznet
# Root:	/space/my/mysql-4.1-build/RESYNC

--- 1.77/scripts/make_binary_distribution.sh	2005-06-03 21:10:18 +02:00
+++ 1.78/scripts/make_binary_distribution.sh	2005-07-06 14:00:22 +02:00
@@ -15,6 +15,7 @@
 STRIP=1
 DEBUG=0
 SILENT=0
+MACHINE=
 TMP=/tmp
 SUFFIX=""
 NDBCLUSTER=
@@ -26,6 +27,7 @@
       --tmp=*)    TMP=`echo "$arg" | sed -e "s;--tmp=;;"` ;;
       --suffix=*) SUFFIX=`echo "$arg" | sed -e "s;--suffix=;;"` ;;
       --no-strip) STRIP=0 ;;
+      --machine=*)  MACHINE=`echo "$arg" | sed -e "s;--machine=;;"` ;;
       --silent)   SILENT=1 ;;
       --with-ndbcluster) NDBCLUSTER=1 ;;
       *)
@@ -286,8 +288,17 @@
   rm -rf $BASE/ndb-stage
 fi
 
+# Use the override --machine if present
+if [ -n "$MACHINE" ] ; then
+  machine=$MACHINE
+fi
+
 # Change the distribution to a long descriptive name
 NEW_NAME=mysql@MYSQL_SERVER_SUFFIX@-$version-$system-$machine$SUFFIX
+
+# Print the platform name for build logs
+echo "PLATFORM NAME: $system-$machine"
+
 BASE2=$TMP/$NEW_NAME
 rm -r -f $BASE2
 mv $BASE $BASE2
Thread
bk commit into 4.1 tree (lenz:1.2325)lenz6 Jul