diff options
author | Ulf Möller <ulf@openssl.org> | 2000-12-20 16:23:31 +0100 |
---|---|---|
committer | Ulf Möller <ulf@openssl.org> | 2000-12-20 16:23:31 +0100 |
commit | 0be35f5c51aa1c54e33d02f8ff7fdfbda4f5786f (patch) | |
tree | 970bab6069d13adb8c14e2e0727ccf9fc3fdc076 /ms | |
parent | Don't access non-existing element buf[256], use buf[255] instead. (diff) | |
download | openssl-0be35f5c51aa1c54e33d02f8ff7fdfbda4f5786f.tar.xz openssl-0be35f5c51aa1c54e33d02f8ff7fdfbda4f5786f.zip |
Stop build when an error occurs.
"Peter 'Luna' Runestig" <peter+openssl-dev@runestig.com>
Diffstat (limited to 'ms')
-rwxr-xr-x | ms/32all.bat | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/ms/32all.bat b/ms/32all.bat index d1f014c4e0..7789cd7667 100755 --- a/ms/32all.bat +++ b/ms/32all.bat @@ -7,6 +7,11 @@ perl util\mk1mf.pl %OPTS% debug dll VC-WIN32 >d32dll.mak perl util\mk1mf.pl %OPTS% dll VC-WIN32 >32dll.mak nmake -f d32.mak +@if errorlevel 1 goto end nmake -f 32.mak +@if errorlevel 1 goto end nmake -f d32dll.mak +@if errorlevel 1 goto end nmake -f 32dll.mak + +:end |