1
0
mirror of https://github.com/mariadb-corporation/mariadb-columnstore-engine.git synced 2025-07-29 08:21:15 +03:00

MCOL-3941 Ninja now builds MCS.

Generated files in utils/loggingcpp/ are now moved into bin dir.
This commit is contained in:
Roman Nozdrin
2020-04-20 15:25:30 +03:00
parent b5bf8eb878
commit 6f3ae1b429
15 changed files with 41 additions and 138 deletions

View File

@ -3,8 +3,6 @@
# $Id: genMsgId.pl 3048 2012-04-04 15:33:45Z rdempsey $
#
open FH, "< ./MessageFile.txt" or die;
$frontmatter = <<'EOD';
/* Copyright (C) 2014 InfiniDB, Inc.
@ -46,7 +44,7 @@ EOD
print $frontmatter;
while (<FH>)
while (<>)
{
chomp;
next if (/^$/);
@ -56,6 +54,3 @@ while (<FH>)
}
print $backmatter;
close FH;