lhelp: fixed building lhelp under fpc 2.6.4

git-svn-id: trunk@45062 -
This commit is contained in:
mattias 2014-05-17 18:55:25 +00:00
parent 2026bcfa22
commit ccb4ea0792

View File

@ -283,7 +283,9 @@ begin
// Exit;
Proc := TProcessUTF8.Create(nil);
{$if FPC_FULLVERSION<20400}
Proc.InheritHandles := false;
{$endif}
{$if (fpc_version=2) and (fpc_release<5)}
Proc.CommandLine := Lazbuild+' '+WS+' '+PCP+' '+LHelpProject;
{$else}