diff options
author | Scott Wegner <swegner@hdfgroup.org> | 2008-03-03 19:45:13 (GMT) |
---|---|---|
committer | Scott Wegner <swegner@hdfgroup.org> | 2008-03-03 19:45:13 (GMT) |
commit | c635149be570fad877b9f79ae651153ef22a22dd (patch) | |
tree | d5abbc4af5146e14af6e33c7f4eccda1174a5a12 /windows | |
parent | 19924061d1e679ec08a6d6cbbb13413e74add522 (diff) | |
download | hdf5-c635149be570fad877b9f79ae651153ef22a22dd.zip hdf5-c635149be570fad877b9f79ae651153ef22a22dd.tar.gz hdf5-c635149be570fad877b9f79ae651153ef22a22dd.tar.bz2 |
[svn-r14696] Purpose: Backport typo fix from trunk
Description:
A small typo in the recent update to installhdf5lib.bat caused the C++ header files not to be installed for the debug version of the libraries. This corrects the issue.
Tested:
VS2005 on WinXP
Diffstat (limited to 'windows')
-rwxr-xr-x | windows/installhdf5lib.bat | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/windows/installhdf5lib.bat b/windows/installhdf5lib.bat index 792cdb3..8e1110d 100755 --- a/windows/installhdf5lib.bat +++ b/windows/installhdf5lib.bat @@ -14,7 +14,7 @@ rem access to either file, you may request a copy from help@hdfgroup.org. rem This batch file is used to install HDF5 libraries and tools
-rem Last Updated: 2/18/2007
+rem Last Updated: 3/3/08
setlocal enabledelayedexpansion
pushd %~dp0
@@ -173,7 +173,7 @@ rem Install C++ Libraries and Tools rem ===RELEASE===
rem include
- call :safe_copy cpp\src\*.h hdf5lib\release\include
+ call :safe_copy "c++\src\*.h" hdf5lib\release\include
rem lib
call :safe_copy proj\hdf5_cpp\release\hdf5_cpp.lib hdf5lib\release\lib
rem dll
|