diff options
author | Vadim Dashevskiy <watcherhd@gmail.com> | 2012-10-09 12:47:57 +0000 |
---|---|---|
committer | Vadim Dashevskiy <watcherhd@gmail.com> | 2012-10-09 12:47:57 +0000 |
commit | ea7ee1f6052051f7e3ce54a08dd48f23291712cb (patch) | |
tree | 186e39ec2d3c2d960fcb3fcb6ef78e43a28ef976 /plugins/Actman | |
parent | 9469aa064cb3020d2e44dbfaf3676482c9549f7e (diff) |
Pascal 32-bit final compilation fix
git-svn-id: http://svn.miranda-ng.org/main/trunk@1842 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/Actman')
-rw-r--r-- | plugins/Actman/make.bat | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/plugins/Actman/make.bat b/plugins/Actman/make.bat index 4e974ba94d..a336c0c0f8 100644 --- a/plugins/Actman/make.bat +++ b/plugins/Actman/make.bat @@ -1,8 +1,8 @@ rem @echo off
-set OUTDIR="..\..\bin10\Release\Plugins"
+set OUTDIR="..\..\bin10\Release\Plugins"
if not exist %OUTDIR% mkdir %OUTDIR%
md tmp
-set myopts=-O3 -Xs -Sd -dMiranda -FEtmp -Fi..\Utils.pas -Fi..\ExternalAPI\delphi -Fu..\Utils.pas -Fu..\..\include\delphi -Fu..\ExternalAPI\delphi
+set myopts=-O3 -Xs -Sd -dMiranda -FE.\tmp -Fi..\Utils.pas -Fi..\ExternalAPI\delphi -Fu..\Utils.pas -Fu..\..\include\delphi -Fu..\ExternalAPI\delphi
set dprname=actman.dpr
rem brcc32.exe %myopts% options.rc -fooptions.res
@@ -16,7 +16,6 @@ if /i '%1' == 'fpc' ( ppcrossx64.exe %myopts% %dprname% %2 %3 %4 %5 %6 %7 %8 %9
)
-move tmp\actman.dll .
+move /y tmp\actman.dll %OUTDIR%\Actman.dll
del /Q tmp\*
rd tmp
-move /y actman.dll ..\..\bin10\Release\Plugins\Actman.dll
|