diff options
author | Scott Wegner <swegner@hdfgroup.org> | 2007-07-10 18:32:20 (GMT) |
---|---|---|
committer | Scott Wegner <swegner@hdfgroup.org> | 2007-07-10 18:32:20 (GMT) |
commit | fe6c92ebd3e677f3ccd94d487bf5aeadc0c0c3fa (patch) | |
tree | 2bbefdf5c2b718d7f22874d53dba8e596e412592 /windows/hdf5bt.BAT | |
parent | caa24a2a0568cf9337a4e3aebe4ff4653ce74ef7 (diff) | |
download | hdf5-fe6c92ebd3e677f3ccd94d487bf5aeadc0c0c3fa.zip hdf5-fe6c92ebd3e677f3ccd94d487bf5aeadc0c0c3fa.tar.gz hdf5-fe6c92ebd3e677f3ccd94d487bf5aeadc0c0c3fa.tar.bz2 |
[svn-r13960] Purpose: Remove obsolete Windows files
Description:
Previously, there was a very intricate process for converting VS6 project files to VS.NET format for testing on the command-line. Now that we maintain VS.NET project files, this system is no longer neccessary. The same builds are now carried out in hdf5build.BAT, so the previous files are obsolete.
Removing them, and updating the MANIFEST
Tested:
WinXP
Diffstat (limited to 'windows/hdf5bt.BAT')
-rwxr-xr-x | windows/hdf5bt.BAT | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/windows/hdf5bt.BAT b/windows/hdf5bt.BAT index f91c7cf..4d35cdf 100755 --- a/windows/hdf5bt.BAT +++ b/windows/hdf5bt.BAT @@ -140,8 +140,11 @@ goto :eof :: Cleanup our environment
:cleanup
-set bt_results=
set build_results=
+
+:: Don't unset bt_results if it is being used by autotest_hdf5.bat
+if "x%hdf5_auto_results%"=="x" set bt_results=
+
popd
if defined hdf5_debug pause
|