Hi!
- :noenv and :abort-cd should be separated, else error about issues with
environment given also in case of compilation errors.
--- Begin Message ---
diff -ruNp old/build.bat new/build.bat
--- old/build.bat 2004-07-14 20:17:36.000000000 +0000
+++ new/build.bat 2004-07-14 21:04:28.000000000 +0000
@@ -108,10 +108,13 @@ goto end
:-----------------------------------------------------------------------
-:abort-cd
-cd ..
:noenv
echo Unable to set necessary environment variables!
+goto abort
+
+:abort-cd
+cd ..
+
:abort
echo Compilation was aborted!
--- End Message ---