From fe6405f5490935f62e4e46b8d02cec0ee2babf47 Mon Sep 17 00:00:00 2001 From: vincents Date: Fri, 29 Feb 2008 23:02:51 +0000 Subject: [PATCH] IDE: fixed running svn2revisioninc when building the IDE. This used to happen in the compile-the-without-linking step. git-svn-id: trunk@14334 - --- ide/buildlazdialog.pas | 5 ----- 1 file changed, 5 deletions(-) diff --git a/ide/buildlazdialog.pas b/ide/buildlazdialog.pas index 91b3d413d8..9981a12d10 100644 --- a/ide/buildlazdialog.pas +++ b/ide/buildlazdialog.pas @@ -366,8 +366,6 @@ begin Tool.EnvironmentOverrides.Values['LCL_PLATFORM']:= LCLPlatformDirNames[Options.LCLPlatform]; Tool.EnvironmentOverrides.Values['LANG']:= 'en_US'; - if blfOnlyIDE in Flags then - Tool.EnvironmentOverrides.Values['USESVN2REVISIONINC']:= '0'; if CompilerPath<>'' then Tool.EnvironmentOverrides.Values['PP']:=CompilerPath; if not FileExists(Tool.Filename) then begin @@ -455,9 +453,6 @@ begin // append target CPU if Options.TargetCPU<>'' then Tool.CmdLineParams:=Tool.CmdLineParams+' CPU_TARGET='+Options.TargetCPU; - // don't run svn2revisioninc when building the IDE for the second time - if not (blfWithoutLinkingIDE in Flags) then - Tool.CmdLineParams:=Tool.CmdLineParams+' USESVN2REVISIONINC=0'; // run Result:=ExternalTools.Run(Tool,Macros); if Result<>mrOk then exit;