From 0bdfc51a0b32cf990ed4a19b51895702f9e2dd8d Mon Sep 17 00:00:00 2001 From: joost Date: Wed, 2 Jan 2019 23:29:45 +0000 Subject: [PATCH] * Do not choke on a non existing compiler executable during initialization git-svn-id: trunk@40748 - --- packages/fppkg/src/pkgoptions.pp | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/packages/fppkg/src/pkgoptions.pp b/packages/fppkg/src/pkgoptions.pp index 9534778f51..50a16a5606 100644 --- a/packages/fppkg/src/pkgoptions.pp +++ b/packages/fppkg/src/pkgoptions.pp @@ -1077,6 +1077,10 @@ var begin if Compiler='' then Exit; + // This is not the place to complain when the compiler does + // not exist at all. + if not FileExists(Compiler) then + Exit; if (CompilerCPU=cpuNone) or (CompilerOS=osNone) or (CompilerVersion='') then