diff options
author | Allen Byrne <50328838+byrnHDF@users.noreply.github.com> | 2023-05-05 20:57:40 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-05-05 20:57:40 (GMT) |
commit | 4b228ec6af3c53956fba7822c0ae808d3d3e2cb3 (patch) | |
tree | 134559dc3c077697845f0158e9da73162210ff2f /release_docs | |
parent | cc4d63b026dd0c392adc28e90a14eec47cb10bdd (diff) | |
download | hdf5-4b228ec6af3c53956fba7822c0ae808d3d3e2cb3.zip hdf5-4b228ec6af3c53956fba7822c0ae808d3d3e2cb3.tar.gz hdf5-4b228ec6af3c53956fba7822c0ae808d3d3e2cb3.tar.bz2 |
Fix CMake generator expression syntax (#2909)
Diffstat (limited to 'release_docs')
-rw-r--r-- | release_docs/RELEASE.txt | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/release_docs/RELEASE.txt b/release_docs/RELEASE.txt index 4b13d09..8d3111e 100644 --- a/release_docs/RELEASE.txt +++ b/release_docs/RELEASE.txt @@ -414,6 +414,19 @@ Bug Fixes since HDF5-1.14.0 release Configuration ------------- + - Fixed syntax of generator expressions used by CMake + + Add quotes around the generator expression should allow CMake to + correctly parse the expression. Generator expressions are typically + parsed after command arguments. If a generator expression contains + spaces, new lines, semicolons or other characters that may be + interpreted as command argument separators, the whole expression + should be surrounded by quotes when passed to a command. Failure to + do so may result in the expression being split and it may no longer + be recognized as a generator expression. + + Fixes GitHub issue #2906 + - Fixed improper include of Subfiling VFD build directory With the release of the Subfiling Virtual File Driver feature, compiler |