#At file:///H:/bzr-new/mysql-next-mr-bugfixing/ based on revid:alik@ibmvm-20100610134637-lg6che7mrme0db8g
3243 Vladislav Vaintroub 2010-06-16
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-03-03 11:29:34 +0000
+++ b/cmake/configure.pl 2010-06-16 12:37:09 +0000
@@ -184,6 +184,11 @@ foreach my $option (@ARGV)
$cmakeargs = $cmakeargs." -DWITH_DEBUG_FULL=1";
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-20100616123709-9mo6iwzr0zxbpi74.bundle
| Thread |
|---|
| • bzr commit into mysql-next-mr-bugfixing branch (vvaintroub:3243)Bug#52275 | Vladislav Vaintroub | 16 Jun |