mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-09-07 10:30:15 +02:00
Fix problem with GNU make 4.X
git-svn-id: branches/fixes_3_0@36398 -
This commit is contained in:
parent
4bf19fd098
commit
daee8c2fdd
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user