Skip to content

Commit

Permalink
contrib/buildsystems: ignore gettext stuff
Browse files Browse the repository at this point in the history
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]>
  • Loading branch information
Philip Oakley authored and dscho committed Nov 15, 2018
1 parent 5d6bf02 commit 9a73519
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions contrib/buildsystems/engine.pl
Original file line number Diff line number Diff line change
Expand Up @@ -141,6 +141,12 @@ sub parseMakeOutput
next;
}

if ($text =~ /^(mkdir|msgfmt) /) {
# options to the Portable Object translations
# the line "mkdir ... && msgfmt ..." contains no linker options
next;
}

if($text =~ / -c /) {
# compilation
handleCompileLine($text, $line);
Expand Down

0 comments on commit 9a73519

Please sign in to comment.