diff options
author | Allen Byrne <byrn@hdfgroup.org> | 2010-12-02 14:31:40 (GMT) |
---|---|---|
committer | Allen Byrne <byrn@hdfgroup.org> | 2010-12-02 14:31:40 (GMT) |
commit | 109294e6e20afd46e3a1bdc722d900cec839716d (patch) | |
tree | 6c10edd1ca1c9d5ab06ed5b9a864f40568a91bf0 /CMakeLists.txt | |
parent | 58ec33ebbaa8e27c273754e300a3be8d3eecec31 (diff) | |
download | hdf5-109294e6e20afd46e3a1bdc722d900cec839716d.zip hdf5-109294e6e20afd46e3a1bdc722d900cec839716d.tar.gz hdf5-109294e6e20afd46e3a1bdc722d900cec839716d.tar.bz2 |
[svn-r19865] Correct INSTALL_PREFIX handling
Diffstat (limited to 'CMakeLists.txt')
-rw-r--r-- | CMakeLists.txt | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index 0b3985b..ccab5d5 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -133,7 +133,9 @@ SET (HDF5_PERFORM_SRC_DIR ${HDF5_SOURCE_DIR}/perform) SET (HDF5_F90_SRC_DIR ${HDF5_SOURCE_DIR}/fortran) # set default prefix location -SET (CMAKE_INSTALL_PREFIX "./hdf5" CACHE PATH "Install path prefix, prepended onto install directories") +IF(CMAKE_INSTALL_PREFIX_INITIALIZED_TO_DEFAULT) + SET(CMAKE_INSTALL_PREFIX "hdf5" CACHE PATH "Install path prefix, prepended onto install directories" FORCE) +ENDIF(CMAKE_INSTALL_PREFIX_INITIALIZED_TO_DEFAULT) IF (NOT HDF5_INSTALL_BIN_DIR) SET (HDF5_INSTALL_BIN_DIR bin) |