IDE: using gmake as default under freebsd

git-svn-id: trunk@21365 -
This commit is contained in:
mattias 2009-08-20 18:15:33 +00:00
parent eb83d753dc
commit 6e27090dbc

View File

@ -73,7 +73,11 @@ end;
---------------------------------------------------------------------------}
function FindDefaultMakePath: string;
begin
{$IFDEF FreeBSD}
Result:=FindDefaultExecutablePath('gmake');
{$ELSE}
Result:=FindDefaultExecutablePath('make');
{$ENDIF}
end;
function GetDefaultCompiledUnitExt(FPCVersion, FPCRelease: integer): string;