diff options
author | tsmith@ramayana.hindu.god <> | 2008-01-24 00:31:47 -0700 |
---|---|---|
committer | tsmith@ramayana.hindu.god <> | 2008-01-24 00:31:47 -0700 |
commit | 3ba8a94bd073c07433176b8488932e595947a08e (patch) | |
tree | b511974c921af4d6b29b2da2ad389265e9e97126 /BitKeeper | |
parent | 525028794df80bae7b5b87f975105555123cde5b (diff) | |
download | mariadb-git-3ba8a94bd073c07433176b8488932e595947a08e.tar.gz |
Fix bug in BK trigger for sending changes to InnoDB devs.
Diffstat (limited to 'BitKeeper')
-rw-r--r-- | BitKeeper/triggers/triggers-lib.pl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/BitKeeper/triggers/triggers-lib.pl b/BitKeeper/triggers/triggers-lib.pl index 834cd9093d0..1c5f7a85726 100644 --- a/BitKeeper/triggers/triggers-lib.pl +++ b/BitKeeper/triggers/triggers-lib.pl @@ -345,10 +345,10 @@ changes are in a clone of a $mysql_version tree. 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; |