Skip to content

Commit 9a73519

Browse files
Philip Oakleydscho
Philip Oakley
authored andcommitted
contrib/buildsystems: ignore gettext stuff
Git's build contains steps to handle internationalization. This caused hiccups in the parser used to generate QMake/Visual Studio project files. As those steps are irrelevant in this context, let's just ignore them. Signed-off-by: Philip Oakley <[email protected]> Signed-off-by: Johannes Schindelin <[email protected]>
1 parent 5d6bf02 commit 9a73519

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

contrib/buildsystems/engine.pl

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -141,6 +141,12 @@ sub parseMakeOutput
141141
next;
142142
}
143143

144+
if ($text =~ /^(mkdir|msgfmt) /) {
145+
# options to the Portable Object translations
146+
# the line "mkdir ... && msgfmt ..." contains no linker options
147+
next;
148+
}
149+
144150
if($text =~ / -c /) {
145151
# compilation
146152
handleCompileLine($text, $line);

0 commit comments

Comments
 (0)