List:Commits« Previous MessageNext Message »
From:tim Date:January 24 2008 8:31am
Subject:bk commit into 5.0 tree (tsmith:1.2596)
View as plain text  
Below is the list of changes that have just been committed into a local
5.0 repository of tsmith.  When tsmith 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@stripped, 2008-01-24 00:31:47-07:00, tsmith@stripped +1 -0
  Fix bug in BK trigger for sending changes to InnoDB devs.

  BitKeeper/triggers/triggers-lib.pl@stripped, 2008-01-24 00:31:46-07:00,
tsmith@stripped +2 -2
    Fix bug in innodb_send_changes_mail() that always displayed
    details for the most recent changeset (-r+) instead of the
    $cset function argument.

diff -Nrup a/BitKeeper/triggers/triggers-lib.pl b/BitKeeper/triggers/triggers-lib.pl
--- a/BitKeeper/triggers/triggers-lib.pl	2008-01-23 16:17:22 -07:00
+++ b/BitKeeper/triggers/triggers-lib.pl	2008-01-24 00:31:46 -07:00
@@ -345,10 +345,10 @@ changes are in a clone of a $mysql_versi
 EOF
   }
   print SENDMAIL "\n";
-  print SENDMAIL qx(bk changes -r+);
+  print SENDMAIL qx(bk changes -r'$cset');
   print SENDMAIL "$description";
   print SENDMAIL "The complete ChangeSet diffs follow.\n\n";
-  print SENDMAIL qx(bk rset -r+ -ah | bk gnupatch -h -dup -T);
+  print SENDMAIL qx(bk rset -r'$cset' -ah | bk gnupatch -h -dup -T);
 
   close_or_warn(SENDMAIL, "$sendmail -t")
     or return undef;
Thread
bk commit into 5.0 tree (tsmith:1.2596)tim24 Jan