diff options
author | George Hazan <george.hazan@gmail.com> | 2013-03-14 21:05:30 +0000 |
---|---|---|
committer | George Hazan <george.hazan@gmail.com> | 2013-03-14 21:05:30 +0000 |
commit | 45358c3507af7d4bb32c031eaa25708905effa91 (patch) | |
tree | 202fd149b18a39cfe6314f037421cf8d4fe2e842 /bin10 | |
parent | ae5bb5cc96d0f0add1d1189c2a3293daaea83d6f (diff) |
old ansi popups removed, noone used them anyway
git-svn-id: http://svn.miranda-ng.org/main/trunk@4034 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'bin10')
-rw-r--r-- | bin10/pascal32.bat | 15 | ||||
-rw-r--r-- | bin10/pascal64.bat | 14 |
2 files changed, 27 insertions, 2 deletions
diff --git a/bin10/pascal32.bat b/bin10/pascal32.bat index 3edb4664e1..17db2ba432 100644 --- a/bin10/pascal32.bat +++ b/bin10/pascal32.bat @@ -4,32 +4,45 @@ pushd ..\plugins pushd Actman
call make.bat fpc 10
+if errorlevel 1 goto :Error
popd
pushd ImportTXT
call make.bat fpc 10
+if errorlevel 1 goto :Error
popd
pushd mRadio
call make.bat fpc 10
+if errorlevel 1 goto :Error
popd
pushd QuickSearch
call make.bat fpc 10
+if errorlevel 1 goto :Error
popd
pushd ShlExt
call make.bat fpc 10
+if errorlevel 1 goto :Error
popd
pushd Watrack
call make.bat fpc 10
+if errorlevel 1 goto :Error
cd icons
call makeicons.bat fpc 10
+if errorlevel 1 goto :Error
popd
pushd Dbx_mmap_SA\Cryptors\Athena
call make.bat fpc 10
+if errorlevel 1 goto :Error
popd
-popd
\ No newline at end of file +popd
+goto :eof
+
+:Error
+echo ============================= FAIL! =============================
+exit
diff --git a/bin10/pascal64.bat b/bin10/pascal64.bat index 2ef0d764de..b3772d3a81 100644 --- a/bin10/pascal64.bat +++ b/bin10/pascal64.bat @@ -4,28 +4,40 @@ pushd ..\plugins pushd Actman
call make.bat fpc64 10
+if errorlevel 1 goto :Error
popd
pushd mRadio
call make.bat fpc64 10
+if errorlevel 1 goto :Error
popd
pushd QuickSearch
call make.bat fpc64 10
+if errorlevel 1 goto :Error
popd
pushd ShlExt
call make.bat fpc64 10
+if errorlevel 1 goto :Error
popd
pushd Watrack
call make.bat fpc64 10
+if errorlevel 1 goto :Error
cd icons
call makeicons.bat fpc64 10
+if errorlevel 1 goto :Error
popd
pushd Dbx_mmap_SA\Cryptors\Athena
call make.bat fpc64 10
+if errorlevel 1 goto :Error
popd
-popd
\ No newline at end of file +popd
+goto :eof
+
+:Error
+echo ============================= FAIL! =============================
+exit
|