Commit dca3c40305a4feb05916459568389742a85d2814 removed the file docs/tlm/ChangeLog but it is currently still referenced in docs/CMakeLists.txt, which results in an error when trying to install the library. As of fd4bedd564457278a5600b406c9082ed190dc486, this bug is still present.
Steps to reproduce:
mkdir build && cd build
cmake ..
cmake --build .
DESTDIR=tmp-install cmake --build . -- install
Here's a trivial patch that solves the issue:
diff --git a/docs/CMakeLists.txt b/docs/CMakeLists.txt
index 89ea23ba..d550b3bc 100644
--- a/docs/CMakeLists.txt
+++ b/docs/CMakeLis