diff options
author | Allen Byrne <byrn@hdfgroup.org> | 2010-07-08 13:48:11 (GMT) |
---|---|---|
committer | Allen Byrne <byrn@hdfgroup.org> | 2010-07-08 13:48:11 (GMT) |
commit | e423bf9e40ad4af5f678507fcbedcc4ae3784a6a (patch) | |
tree | 3e4d113d99ae00c067e7095b80542ea82f86566c | |
parent | e1bd8be26c943f053ca30f659e15556ac711009f (diff) | |
download | hdf5-e423bf9e40ad4af5f678507fcbedcc4ae3784a6a.zip hdf5-e423bf9e40ad4af5f678507fcbedcc4ae3784a6a.tar.gz hdf5-e423bf9e40ad4af5f678507fcbedcc4ae3784a6a.tar.bz2 |
[svn-r19055] Corrected a typo in a macro that used a version variable.
-rw-r--r-- | Resources/HDF5Macros.cmake | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Resources/HDF5Macros.cmake b/Resources/HDF5Macros.cmake index cb1b300..8b30fbf 100644 --- a/Resources/HDF5Macros.cmake +++ b/Resources/HDF5Macros.cmake @@ -98,7 +98,7 @@ MACRO (H5_SET_LIB_OPTIONS libtarget libname libtype) IF (BUILD_SHARED_LIBS) IF (WIN32) - SET (LIBHDF_VERSION HDF5_PACKAGE_VERSION_MAJOR) + SET (LIBHDF_VERSION ${HDF5_PACKAGE_VERSION_MAJOR}) ELSE (WIN32) SET (LIBHDF_VERSION ${HDF5_PACKAGE_VERSION}) ENDIF (WIN32) |