diff options
author | Mike Gabriel <mike.gabriel@das-netzwerkteam.de> | 2020-07-24 12:05:24 +0200 |
---|---|---|
committer | Robert Tari <robert@tari.in> | 2020-07-24 18:47:54 +0200 |
commit | d75484963ae648ffdb0f36a9cc1f225e5129c5c7 (patch) | |
tree | ca60b2a83f6bbfc29a637d8ff2dd3a7a62585156 | |
parent | 068e34afc9fac537e1489a070fcae37da28baca3 (diff) | |
download | ayatana-indicator-datetime-d75484963ae648ffdb0f36a9cc1f225e5129c5c7.tar.gz ayatana-indicator-datetime-d75484963ae648ffdb0f36a9cc1f225e5129c5c7.tar.bz2 ayatana-indicator-datetime-d75484963ae648ffdb0f36a9cc1f225e5129c5c7.zip |
CMakeLists.txt: Drop workaround for missing libexec dir on Debian. Debian moved forward and now supports FHS 3.0 (since Debian Policy 4.1.5).
Fixes AyatanaIndicators/ayatana-indicator-datetime#5.
-rw-r--r-- | CMakeLists.txt | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index e4a0b2c..7923c6b 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -13,10 +13,6 @@ option (enable_lcov "Generate lcov code coverage reports." ON) ## include (GNUInstallDirs) -if (EXISTS "/etc/debian_version") # Workaround for libexecdir on debian - set (CMAKE_INSTALL_LIBEXECDIR "${CMAKE_INSTALL_LIBDIR}") - set (CMAKE_INSTALL_FULL_LIBEXECDIR "${CMAKE_INSTALL_FULL_LIBDIR}") -endif () set (CMAKE_INSTALL_PKGLIBEXECDIR "${CMAKE_INSTALL_LIBEXECDIR}/${CMAKE_PROJECT_NAME}") set (CMAKE_INSTALL_FULL_PKGLIBEXECDIR "${CMAKE_INSTALL_FULL_LIBEXECDIR}/${CMAKE_PROJECT_NAME}") |