From 50c7bf77dea3d61da3e6fdb489a2d1199dfb6a3a Mon Sep 17 00:00:00 2001 From: o9000 Date: Wed, 4 Oct 2017 19:15:44 +0200 Subject: [PATCH] Do not hardcode path to /etc --- CMakeLists.txt | 2 +- ChangeLog | 4 ++++ 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 5909659..4164353 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -273,7 +273,7 @@ set_target_properties( tint2 PROPERTIES LINK_FLAGS "-pthread -fno-strict-aliasin install( TARGETS tint2 DESTINATION bin ) install( FILES tint2.svg DESTINATION ${CMAKE_INSTALL_DATADIR}/icons/hicolor/scalable/apps ) install( FILES tint2.desktop DESTINATION ${CMAKE_INSTALL_DATADIR}/applications ) -install( FILES themes/tint2rc DESTINATION /etc/xdg/tint2 ) +install( FILES themes/tint2rc DESTINATION ${CMAKE_INSTALL_FULL_SYSCONFDIR}/xdg/tint2 ) install( FILES default_icon.png DESTINATION ${CMAKE_INSTALL_DATADIR}/tint2 ) install( FILES AUTHORS ChangeLog README.md doc/tint2.md DESTINATION ${docdir} ) install( FILES doc/manual.html doc/readme.html DESTINATION ${htmldir} ) diff --git a/ChangeLog b/ChangeLog index fbfd237..94eaeef 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +2017-10-04 master +- Fixes: + - cmake: Do not hardcode path to /etc + 2017-10-01 15.2 - Fixes: - Battery info is now again displayed even when current sensor is missing (https://github.com/jmc-88/tint3/issues/34)