diff options
author | Scott Wegner <swegner@hdfgroup.org> | 2008-03-03 19:43:31 (GMT) |
---|---|---|
committer | Scott Wegner <swegner@hdfgroup.org> | 2008-03-03 19:43:31 (GMT) |
commit | 78d79fa83eb082bf02e8140e761ccbac1aa9e192 (patch) | |
tree | 6b44c53e58a9b2766d3c469e1ee86d3ae229e248 /windows/installhdf5lib.bat | |
parent | 31a6a50a84413e7af8af52ee66e9927e65a448c5 (diff) | |
download | hdf5-78d79fa83eb082bf02e8140e761ccbac1aa9e192.zip hdf5-78d79fa83eb082bf02e8140e761ccbac1aa9e192.tar.gz hdf5-78d79fa83eb082bf02e8140e761ccbac1aa9e192.tar.bz2 |
[svn-r14695] Purpose: Fix typo in Windows install file
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/installhdf5lib.bat')
-rwxr-xr-x | windows/installhdf5lib.bat | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/windows/installhdf5lib.bat b/windows/installhdf5lib.bat index 8361e81..8ee5bb6 100755 --- a/windows/installhdf5lib.bat +++ b/windows/installhdf5lib.bat @@ -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
|