diff options
author | Brian Carlson <bcarlson@paradigm4.com> | 2019-07-12 18:07:40 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2019-07-12 20:20:08 (GMT) |
commit | f84d2045e916a3656e3c72f8be268c4a0c9f4dcc (patch) | |
tree | b4d521066434da77a9992466d63868afff7f74cc /Help/release | |
parent | f3e9a6ff62f6f58cd661dd447c22a01c50f6f4ad (diff) | |
download | CMake-f84d2045e916a3656e3c72f8be268c4a0c9f4dcc.zip CMake-f84d2045e916a3656e3c72f8be268c4a0c9f4dcc.tar.gz CMake-f84d2045e916a3656e3c72f8be268c4a0c9f4dcc.tar.bz2 |
FindBISON: Fix CMP0088 NEW behavior for non-absolute input paths
Now that the working directory is in the build tree, relative input
paths must be converted to an absolute path to remain relative to the
source directory.
Fixes: #19472
Diffstat (limited to 'Help/release')
-rw-r--r-- | Help/release/3.14.rst | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/Help/release/3.14.rst b/Help/release/3.14.rst index e3a7a62..229d8dc 100644 --- a/Help/release/3.14.rst +++ b/Help/release/3.14.rst @@ -420,3 +420,11 @@ Changes made since CMake 3.14.0 include the following. from explicit use via :command:`include_directories` and :command:`target_include_directories` as they were in CMake 3.14.0 through 3.14.4. + +3.14.6 +------ + +* In CMake 3.14.0 through 3.14.5, the :module:`FindBISON` module + policy :policy:`CMP0088` ``NEW`` behavior accidentally interpreted + a relative path to the ``.y`` input as relative to the build tree + directory instead of the source tree directory. This has been fixed. |