mirror of https://gitlab.com/basile.b/dexed.git
fixed 'Boolean expected' error
u_compilers.pas(768,6) Error: Incompatible types: got "Constant String" expected "Boolean"
This commit is contained in:
parent
09d017733d
commit
03a33c2137
|
@ -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';
|
||||
|
|
Loading…
Reference in New Issue