fixed 'Boolean expected' error

u_compilers.pas(768,6) Error: Incompatible types: got "Constant String" expected "Boolean"
This commit is contained in:
Hugo 2019-04-24 00:47:20 +02:00 committed by Basile-z
parent 09d017733d
commit 03a33c2137
1 changed files with 1 additions and 1 deletions

View File

@ -765,7 +765,7 @@ begin
{$IFDEF DARWIN}
if '/usr/local/bin/dmd'.fileExists then
fPaths.DmdExeName:='/usr/local/bin/dmd';
if '/Library/D/dmd/src/druntime/import' then
if '/Library/D/dmd/src/druntime/import'.dirExists then
fPaths.DmdRuntimePath:='/Library/D/dmd/src/druntime/import';
if '/Library/D/dmd/src/phobos'.dirExists then
fPaths.DmdPhobosPath:='/Library/D/dmd/src/phobos';