Additional error checking.
authorDr. Stephen Henson <steve@openssl.org>
Sat, 2 Jul 2011 15:57:35 +0000 (15:57 +0000)
committerDr. Stephen Henson <steve@openssl.org>
Sat, 2 Jul 2011 15:57:35 +0000 (15:57 +0000)
ms/do_fips.bat
util/fipsas.pl

index a78fc2515dfc24651fad32a422512983faa8c2d4..3b0d2aa7ffdd9722cff492c0ac6bbfb5173a37bc 100644 (file)
@@ -56,7 +56,9 @@ perl util\mk1mf.pl dll %ASM% %TARGET% >ms\ntdll.mak
 @if ERRORLEVEL 1 goto error
 
 nmake -f ms\ntdll.mak clean
+@if ERRORLEVEL 1 goto error
 nmake -f ms\ntdll.mak
+@if ERRORLEVEL 1 goto error
 nmake -f ms\ntdll.mak install
 @if ERRORLEVEL 1 goto error
 
index 6e10d7d8d5c636fdc103daddb651e3ac94b14538..fc2a759308e62f4e90e8fc297076c2757fbfe591 100644 (file)
@@ -49,11 +49,11 @@ while (<IN>)
 my ($from, $to);
 
 #rename target temporarily
-rename($target, "tmptarg.s") || die "Can't rename $target\n";
+rename($target, "tmptarg.s") || die "Can't rename $target";
 
 #edit target
-open IN,"tmptarg.s";
-open OUT, ">$target";
+open(IN,"tmptarg.s") || die "Can't open temporary file";
+open(OUT, ">$target") || die "Can't open output file $target";
 
 while (<IN>)
 {