summaryrefslogtreecommitdiffstats
path: root/windows/copy_hdf.bat
diff options
context:
space:
mode:
authorScott Wegner <swegner@hdfgroup.org>2008-02-12 15:54:50 (GMT)
committerScott Wegner <swegner@hdfgroup.org>2008-02-12 15:54:50 (GMT)
commitcd785d60baa1966ff8ae3200ca0d5cab1baf5322 (patch)
treec83c473195d771154d676af37834141a6fb2fb3f /windows/copy_hdf.bat
parent78c3ecc46e0baf9f1d099f8aef5521e9daaf559c (diff)
downloadhdf5-cd785d60baa1966ff8ae3200ca0d5cab1baf5322.zip
hdf5-cd785d60baa1966ff8ae3200ca0d5cab1baf5322.tar.gz
hdf5-cd785d60baa1966ff8ae3200ca0d5cab1baf5322.tar.bz2
[svn-r14553] Purpose: Minor cleanup of Windows installation scripts
Description: Make the Windows copy_hdf.bat a little cleaner/safer, and produce useful output in installhdf5lib.bat Tested: VS2005 on WinXP
Diffstat (limited to 'windows/copy_hdf.bat')
-rwxr-xr-xwindows/copy_hdf.bat12
1 files changed, 6 insertions, 6 deletions
diff --git a/windows/copy_hdf.bat b/windows/copy_hdf.bat
index b02e2eb..c9b2957 100755
--- a/windows/copy_hdf.bat
+++ b/windows/copy_hdf.bat
@@ -21,11 +21,11 @@ rem Last Update : November 17, 2007 by Scott Wegner
pushd %~dp0
-copy src\H5Tinit.c ..\src
-copy src\H5pubconf.h ..\src
-copy fortran\src\H5f90i_gen.h ..\fortran\src
-copy fortran\src\H5fortran_types.f90 ..\fortran\src
-xcopy /e/i/Y *.bat ..\
-copy examples\testExamples_exp_output.txt ..\examples
+copy /y src\H5Tinit.c ..\src > nul
+copy /y src\H5pubconf.h ..\src > nul
+copy /y fortran\src\H5f90i_gen.h ..\fortran\src > nul
+copy /y fortran\src\H5fortran_types.f90 ..\fortran\src > nul
+xcopy /s /i /y *.bat ..\ > nul
+copy /y examples\testExamples_exp_output.txt ..\examples > nul
popd