diff options
author | George Hazan <ghazan@miranda.im> | 2018-08-29 14:17:05 +0300 |
---|---|---|
committer | George Hazan <ghazan@miranda.im> | 2018-08-29 14:17:05 +0300 |
commit | 1fff859b0d45658ba82d7e40ac479c940f8f6133 (patch) | |
tree | a9f3aa71715222ee00cd83a11c5b2e359e7894d2 | |
parent | 371a7a0dc4a9d153c5a5f55fcad1fd9ef3e76c7c (diff) |
fix for variable's name conflict
-rw-r--r-- | bin15/pascal.bat | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/bin15/pascal.bat b/bin15/pascal.bat index 56f1dd18c4..3830f3bcf1 100644 --- a/bin15/pascal.bat +++ b/bin15/pascal.bat @@ -1,29 +1,29 @@ @echo off -if "%1" == "64" (set tp=64) else (set tp=) +if "%1" == "64" (set fpcpl=64) else (set fpcpl=) pushd ..\plugins pushd Actman -call make.bat fpc%tp% 15 +call make.bat fpc%fpcpl% 15 if errorlevel 1 goto :Error popd pushd mRadio -call make.bat fpc%tp% 15 +call make.bat fpc%fpcpl% 15 if errorlevel 1 goto :Error popd pushd QuickSearch -call make.bat fpc%tp% 15 +call make.bat fpc%fpcpl% 15 if errorlevel 1 goto :Error popd pushd Watrack -call make.bat fpc%tp% 15 +call make.bat fpc%fpcpl% 15 if errorlevel 1 goto :Error cd icons -call makeicons.bat fpc%tp% 15 +call makeicons.bat fpc%fpcpl% 15 if errorlevel 1 goto :Error popd |