summaryrefslogtreecommitdiffstats
path: root/windows/hdf5check.BAT
diff options
context:
space:
mode:
authorAllen Byrne <byrn@hdfgroup.org>2010-01-11 17:47:42 (GMT)
committerAllen Byrne <byrn@hdfgroup.org>2010-01-11 17:47:42 (GMT)
commit4e8e0a55a5b618f343c0959622bf19a79f457a27 (patch)
treee79b2f63c6a1e1aada26a1a8cc4e8a567a20f240 /windows/hdf5check.BAT
parenta65b70ccc74ddf0d314d5a660c76b4b40f168c5d (diff)
downloadhdf5-4e8e0a55a5b618f343c0959622bf19a79f457a27.zip
hdf5-4e8e0a55a5b618f343c0959622bf19a79f457a27.tar.gz
hdf5-4e8e0a55a5b618f343c0959622bf19a79f457a27.tar.bz2
[svn-r18102] Added new H5HLint.c file. Corrected nodebug parameter to check.
Diffstat (limited to 'windows/hdf5check.BAT')
-rwxr-xr-xwindows/hdf5check.BAT6
1 files changed, 3 insertions, 3 deletions
diff --git a/windows/hdf5check.BAT b/windows/hdf5check.BAT
index 2f14bfd..07319ca 100755
--- a/windows/hdf5check.BAT
+++ b/windows/hdf5check.BAT
@@ -20,7 +20,7 @@ rem 1. hdf5check -- HDF5 tools and c library tests
rem 2. hdf5check enablecpp -- HDF5 tools and c/c++ library tests
rem 3. hdf5check enablefortran -- HDF5 tools and c/fortran library tests
rem 4. hdf5check enableall -- HDF5 tools and c/c++/fortran library tests
-rem disabledebug -- can be added to any of the above to not test debug versions
+rem nodebug -- can be added to any of the above to not test debug versions
setlocal enabledelayedexpansion
pushd %~dp0
@@ -50,10 +50,10 @@ if /i "%1" equ "enablecpp" (
) else if /i "%1" equ "enableall" (
set build_cpp_conditional=true
set build_fortran_conditional=true
-) else if /i "%1" equ "disabledebug" (
+) else if /i "%1" equ "nodebug" (
set chkdebug=
)
-if /i "%2" equ "disabledebug" (
+if /i "%2" equ "nodebug" (
set chkdebug=
)