summaryrefslogtreecommitdiffstats
path: root/release_docs
diff options
context:
space:
mode:
authorAllen Byrne <50328838+byrnHDF@users.noreply.github.com>2023-05-12 00:07:25 (GMT)
committerGitHub <noreply@github.com>2023-05-12 00:07:25 (GMT)
commitec4c67733fa55771edc8102a13adc2ab0b7522ad (patch)
treec81ae47e280a774531858465181917078bc3159a /release_docs
parent89c1050d10f5c8b92404b8748d56244a32c25fcf (diff)
downloadhdf5-ec4c67733fa55771edc8102a13adc2ab0b7522ad.zip
hdf5-ec4c67733fa55771edc8102a13adc2ab0b7522ad.tar.gz
hdf5-ec4c67733fa55771edc8102a13adc2ab0b7522ad.tar.bz2
Fix CMake generator expression syntax (#2941)
Diffstat (limited to 'release_docs')
-rw-r--r--release_docs/RELEASE.txt13
1 files changed, 12 insertions, 1 deletions
diff --git a/release_docs/RELEASE.txt b/release_docs/RELEASE.txt
index 7a21f8b..8cda997 100644
--- a/release_docs/RELEASE.txt
+++ b/release_docs/RELEASE.txt
@@ -224,7 +224,18 @@ Bug Fixes since HDF5-1.10.10 release
Configuration
-------------
- -
+ - Fixed syntax of generator expressions used by CMake
+
+ Adding 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
Tools