#At file:///H:/bzr-new/mysql-5.5-bugteam/ based on revid:vvaintroub@stripped
3118 Vladislav Vaintroub 2010-11-12
Bug #52275 CMake configure wrapper does not handle
--with-comment correctly
Properly convert --with-comment
do not uppercase it, quote as it might contain spaces.
modified:
cmake/configure.pl
=== modified file 'cmake/configure.pl'
--- a/cmake/configure.pl 2010-08-06 12:59:38 +0000
+++ b/cmake/configure.pl 2010-11-12 01:33:19 +0000
@@ -185,6 +185,11 @@ foreach my $option (@ARGV)
($option =~ /enable/ ? "1" : "0");
next;
}
+ if ($option =~ /with-comment=/)
+ {
+ $cmakeargs = $cmakeargs." \"-DWITH_COMMENT=".substr($option,13)."\"";
+ next;
+ }
$option = uc($option);
$option =~ s/-/_/g;
Attachment: [text/bzr-bundle] bzr/vvaintroub@mysql.com-20101112013319-vet4p09u9iv35csg.bundle
Thread |
---|
• bzr commit into mysql-5.5-bugteam branch (vvaintroub:3118) Bug#52275 | Vladislav Vaintroub | 12 Nov |