diff options
author | Allen Byrne <byrn@hdfgroup.org> | 2019-02-14 17:20:17 (GMT) |
---|---|---|
committer | Allen Byrne <byrn@hdfgroup.org> | 2019-02-14 17:20:17 (GMT) |
commit | 2268685c08a77d2b09613bef196d6138c6adb7a1 (patch) | |
tree | 1023fa7eb2201c50f82c0fe3057aa46bc6a751d1 /src/CMakeLists.txt | |
parent | 10cdff5ca45786832bf5e6c3e3408bc725464fd6 (diff) | |
download | hdf5-2268685c08a77d2b09613bef196d6138c6adb7a1.zip hdf5-2268685c08a77d2b09613bef196d6138c6adb7a1.tar.gz hdf5-2268685c08a77d2b09613bef196d6138c6adb7a1.tar.bz2 |
CMake if statement correction
Diffstat (limited to 'src/CMakeLists.txt')
-rw-r--r-- | src/CMakeLists.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt index 4d77a8b..c4048e1 100644 --- a/src/CMakeLists.txt +++ b/src/CMakeLists.txt @@ -944,7 +944,7 @@ if (BUILD_SHARED_LIBS) endif () if (LOCAL_BATCH_TEST) - if (${LOCAL_BATCH_SCRIPT_COMMAND} STREQUAL "raybsub") + if (LOCAL_BATCH_SCRIPT_COMMAND MATCHES "raybsub") configure_file ( ${HDF5_SOURCE_DIR}/bin/batch/${LOCAL_BATCH_SCRIPT_COMMAND} ${HDF5_BINARY_DIR}/${LOCAL_BATCH_SCRIPT_COMMAND} ESCAPE_QUOTES @ONLY |