contrib/buildsystems: ignore gettext stuff
[gitweb.git] / contrib / buildsystems / engine.pl
index ad6a82c30ce808b3ff62d77f61b75c33db8ef62b..9db3d43a1eb2f7528ebd29a5c18ebe415abd45cb 100755 (executable)
@@ -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);