Fix problem with GNU make 4.X

git-svn-id: branches/fixes_3_0@36398 -
This commit is contained in:
pierre 2017-06-02 18:56:03 +00:00
parent 4bf19fd098
commit daee8c2fdd

View File

@ -131,7 +131,11 @@ Function ProcessArgs: longint;
while not(eof(responsefile)) do
begin
readln(responsefile,s);
AddFile(s);
{ Avoid problem with GNU make version 4
which adds lines containing
make[X] Entering/leaving ... }
if not (copy(s,1,5)='make[') then
AddFile(s);
end;
close(responsefile);
end