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 <philipoakley@iee.org> Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de> Signed-off-by: Junio C Hamano <gitster@pobox.com>

Philip Oakley committed Jul 29, 2019 at 13:08 UTC aae1713f14a48092f7fa9c10fdd3d1e4ba4e8367
1 file changed +6
contrib/buildsystems/engine.pl
+6
@@ -141,6 +141,12 @@ sub parseMakeOutput
141 next;
142 }
143
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 +
150 if($text =~ / -c /) {
151 # compilation
152 handleCompileLine($text, $line);