diff options
author | Allen Byrne <50328838+byrnHDF@users.noreply.github.com> | 2023-05-05 20:42:46 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-05-05 20:42:46 (GMT) |
commit | 0325220cc048465b59ca98ea0e7e4442608a76fe (patch) | |
tree | 940c336e80df971e491ff159ff0cbe39613442c8 /release_docs | |
parent | 29f29c297ca9e52a9a8ff40e7145c88d1e22feb5 (diff) | |
download | hdf5-0325220cc048465b59ca98ea0e7e4442608a76fe.zip hdf5-0325220cc048465b59ca98ea0e7e4442608a76fe.tar.gz hdf5-0325220cc048465b59ca98ea0e7e4442608a76fe.tar.bz2 |
Fix CMake generator expression syntax (#2910)
* Fix CMake generator expression syntax
* Add missing quotes
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 aad09d5..d956a1e 100644 --- a/release_docs/RELEASE.txt +++ b/release_docs/RELEASE.txt @@ -417,6 +417,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 |