mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-04-22 13:59:31 +02:00
generated Makefile.fpc now always use / as pathdelim
git-svn-id: trunk@8523 -
This commit is contained in:
parent
d46bf23df7
commit
72fff304ac
@ -1239,12 +1239,16 @@ var
|
||||
TrimSearchPath(ConvertLazarusToMakefileMakros(s),''),
|
||||
APackage.Directory);
|
||||
Replace(Result,';',' ');
|
||||
if PathDelim<>'/' then
|
||||
Replace(Result,'\','/');
|
||||
end;
|
||||
|
||||
function ConvertLazarusToMakefileDirectory(const s: string): string;
|
||||
begin
|
||||
Result:=CreateRelativePath(TrimFilename(
|
||||
ConvertLazarusToMakefileMakros(s)),APackage.Directory);
|
||||
if PathDelim<>'/' then
|
||||
Replace(Result,'\','/');
|
||||
end;
|
||||
|
||||
procedure AddCompilerOptions(ParsedOpts: TParsedCompilerOptions);
|
||||
|
Loading…
Reference in New Issue
Block a user