From a66445c0781516dbaf28ab25b7b7d2e82fdd5abb Mon Sep 17 00:00:00 2001 From: mattias Date: Sun, 4 Aug 2013 07:31:23 +0000 Subject: [PATCH] IDE: fixed compile, bug #24825 git-svn-id: trunk@42298 - --- ide/compiler.pp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ide/compiler.pp b/ide/compiler.pp index cc1c7b16c3..1357aa8651 100644 --- a/ide/compiler.pp +++ b/ide/compiler.pp @@ -287,7 +287,7 @@ begin try if TheProcess=nil then FTheProcess := TOutputFilterProcess.Create(nil); - TheProcess.CommandLine := CmdLine; + TheProcess.CommandLine := CompilerFilename+CmdLine; TheProcess.Options:= [poUsePipes, poStdErrToOutput]; TheProcess.ShowWindow := swoHide; Result:=mrOk;