3576 magnus.blaudd@stripped 2011-10-11
Add --build and --no-build switch to allow for only configuring
modified:
storage/ndb/compile-cluster
3575 magnus.blaudd@stripped 2011-10-10 [merge]
Merge 7.1 -> 5.5-cluster
added:
mysql-test/suite/ndb_big/bug37983-master.opt
mysql-test/suite/ndb_big/disabled.def
modified:
mysql-test/mysql-test-run.pl
=== modified file 'storage/ndb/compile-cluster'
--- a/storage/ndb/compile-cluster 2011-09-29 11:30:39 +0000
+++ b/storage/ndb/compile-cluster 2011-10-11 12:31:20 +0000
@@ -32,6 +32,7 @@ use Getopt::Long;
# straight through
my $opt_debug;
my $opt_build_type;
+my $opt_build = 1;
Getopt::Long::Configure("pass_through");
GetOptions(
@@ -40,6 +41,7 @@ GetOptions(
'debug' => \$opt_debug,
'with-debug:s' => sub { $opt_debug = 1; },
'build-type=s' => \$opt_build_type,
+ 'build!' => \$opt_build,
) or exit(1);
# Find source root directory, assume this script is
@@ -98,6 +100,13 @@ my $cmake_version_id;
cmd($^X, @args, @ARGV, @opt_build_type_arg);
}
+if (!$opt_build)
+{
+ print "Configuration completed, skipping build(used --no-build)\n";
+ exit(0);
+}
+
+
#
# Build
#
No bundle (reason: useless for push emails).
| Thread |
|---|
| • bzr push into mysql-5.5-cluster branch (magnus.blaudd:3575 to 3576) | magnus.blaudd | 12 Oct |