summaryrefslogtreecommitdiffstats
path: root/windows/hdf5bt.BAT
diff options
context:
space:
mode:
authorAllen Byrne <byrn@hdfgroup.org>2009-10-27 21:04:33 (GMT)
committerAllen Byrne <byrn@hdfgroup.org>2009-10-27 21:04:33 (GMT)
commit312d3d4b2e4f4954aeb752de2362ca88f3d86a16 (patch)
tree5232aa9f790db65273df56a0f46b36639b63a4f3 /windows/hdf5bt.BAT
parent5fd05738364305c62b9ce9b380b62a5abcd68323 (diff)
downloadhdf5-312d3d4b2e4f4954aeb752de2362ca88f3d86a16.zip
hdf5-312d3d4b2e4f4954aeb752de2362ca88f3d86a16.tar.gz
hdf5-312d3d4b2e4f4954aeb752de2362ca88f3d86a16.tar.bz2
[svn-r17753] Remove .NET references from windows text files and batch files
Diffstat (limited to 'windows/hdf5bt.BAT')
-rwxr-xr-xwindows/hdf5bt.BAT18
1 files changed, 5 insertions, 13 deletions
diff --git a/windows/hdf5bt.BAT b/windows/hdf5bt.BAT
index b32a1bb..e72880c 100755
--- a/windows/hdf5bt.BAT
+++ b/windows/hdf5bt.BAT
@@ -16,8 +16,7 @@ rem access to either file, you may request a copy from help@hdfgroup.org.
rem File Name: hdf5bt.bat
rem This batch file is used to build and test HDF5 Libraries and Tools.
rem This batch file takes the following options:
-rem . /vs7 Build HDF5 using Visual Studio .NET 2003
-rem . /vs8 Note: Default is Visual Studio 2005
+rem . /vs8 Build HDF5 using Visual Studio 2005
rem . /vs9 Build HDF5 using Visual Studio 2008
rem . Note: Default is Visual Studio 2005
rem . /fort Build and test HDF5 with Fortran libraries
@@ -63,8 +62,7 @@ rem Print a help message
echo.
echo Usage: %~nx0 [OPTION]
echo.
- echo. /vs7 Build HDF5 using Visual Studio .NET 2003
- echo. /vs8 Note: Default is Visual Studio 2005
+ echo. /vs8 Build HDF5 using Visual Studio 2005
echo. /vs9 Build HDF5 using Visual Studio 2008
echo. Note: Default is Visual Studio 2005
echo. /fort Build and test HDF5 with Fortran libraries
@@ -81,13 +79,7 @@ rem Parse through the parameters sent to file, and set appropriate variables
:parse_params
for %%a in (%*) do (
- if "%%a"=="/vs7" (
- rem Visual Studio .NET not supported
- rem Set errorlevel 1 and send to help
- call :help
- exit /b 1
-
- ) else if "%%a"=="/vs8" (
+ if "%%a"=="/vs8" (
rem Use Visual Studio 2005 to build
set hdf5_vs2005=true
@@ -227,8 +219,8 @@ rem This is where the magic happens
:main
call :parse_params %*
- if %errorlevel% neq 0 (
- if %errorlevel% equ 1 (
+ if not errorlevel 0 (
+ if errorlevel 1 (
rem This isn't an error case-- this means /? was specified. Simply
rem quit.
goto end