diff options
author | Vadim Dashevskiy <watcherhd@gmail.com> | 2012-12-07 15:39:09 +0000 |
---|---|---|
committer | Vadim Dashevskiy <watcherhd@gmail.com> | 2012-12-07 15:39:09 +0000 |
commit | d39b96dbadaa797b5e4354f507f8a43ac2b1f732 (patch) | |
tree | 0a122630bbf706c58a7a99bd244014309341480f /plugins/mRadio | |
parent | 89e6a1c1f062fc00ccb66114a06636109918a7be (diff) |
- pascal build scripts adaptation for bin11
git-svn-id: http://svn.miranda-ng.org/main/trunk@2689 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/mRadio')
-rw-r--r-- | plugins/mRadio/make.bat | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/plugins/mRadio/make.bat b/plugins/mRadio/make.bat index 2917577c4a..1bc4a56588 100644 --- a/plugins/mRadio/make.bat +++ b/plugins/mRadio/make.bat @@ -1,9 +1,9 @@ @echo off
if /i '%1' == 'fpc' (
- set OUTDIR="..\..\bin10\Release\Plugins"
+ set OUTDIR="..\..\bin%2\Release\Plugins"
set FPCBIN=fpc.exe
) else if /i '%1' == 'fpc64' (
- set OUTDIR="..\..\bin10\Release64\Plugins"
+ set OUTDIR="..\..\bin%2\Release64\Plugins"
set FPCBIN=ppcrossx64.exe
)
set PROJECT=mRadio
@@ -13,7 +13,7 @@ md tmp rem brcc32.exe mradio.rc -fomradio.res
-%FPCBIN% @..\..\plugins\Utils.pas\fpc.cfg %PROJECT%.dpr %2 %3 %4 %5 %6 %7 %8 %9
+%FPCBIN% @..\..\plugins\Utils.pas\fpc.cfg %PROJECT%.dpr %3 %4 %5 %6 %7 %8 %9
move .\tmp\%PROJECT%.dll %OUTDIR%
del /Q tmp\*
|