Fixed compilation for non unix after r60621 #5905fbb553

git-svn-id: trunk@60623 -
This commit is contained in:
marcus 2019-03-08 16:51:58 +00:00
parent e63b9a2e81
commit 25896bdf09

View File

@ -83,7 +83,7 @@ type
);
TSearchFileInPathFlags = set of TSearchFileInPathFlag;
const
sffFindProgramInPath = [{$IFDEF Unix}sffDontSearchInBasePath{$ENDIF},sffFile,sffExecutable];
sffFindProgramInPath = [{$IFDEF Unix}sffDontSearchInBasePath,{$ENDIF}sffFile,sffExecutable];
function SearchFileInPath(const Filename, BasePath, SearchPath,
Delimiter: string; Flags: TSearchFileInPathFlags): string; overload;