From: Jonas Oreland Date: September 29 2011 11:08am Subject: bzr push into mysql-5.5-cluster branch (jonas.oreland:3544 to 3545) List-Archive: http://lists.mysql.com/commits/141203 Message-Id: <20110929110838.01F04918F12@perch.localdomain> MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit 3545 Jonas Oreland 2011-09-29 ndb - make sure that build-type is added last modified: storage/ndb/compile-cluster 3544 Jonas Oreland 2011-09-29 ndb - one more const qualifier warning modified: support-files/compiler_warnings.supp === modified file 'storage/ndb/compile-cluster' --- a/storage/ndb/compile-cluster 2011-09-29 09:42:36 +0000 +++ b/storage/ndb/compile-cluster 2011-09-29 11:07:50 +0000 @@ -74,6 +74,7 @@ my $cmake_version_id; # { my @args; + my @opt_build_type_arg; push(@args, "$srcdir/cmake/configure.pl"); # MySQL Server options @@ -91,10 +92,10 @@ my $cmake_version_id; if ($opt_build_type) { - push(@args, "--cmake-args=-G \"" . $opt_build_type . "\""); + push(@opt_build_type_arg, "--cmake-args=-G \"" . $opt_build_type . "\""); } - cmd($^X, @args, @ARGV); + cmd($^X, @args, @ARGV, @opt_build_type_arg); } # No bundle (reason: useless for push emails).