diff options
author | Mike Gabriel <mike.gabriel@das-netzwerkteam.de> | 2022-02-19 21:33:01 +0100 |
---|---|---|
committer | Mike Gabriel <mike.gabriel@das-netzwerkteam.de> | 2022-02-19 21:33:01 +0100 |
commit | 5b8f9a2bfc21468bc8a91fdc88178f04a25d1ab9 (patch) | |
tree | 6d57014ea817cfd1ca1892e1271b6943ec5975cc | |
parent | 7d478107b40712e70356c9ff3a8416e0676cba7a (diff) | |
parent | 6fe762b22fbae59b2cc8432b8d43e2ce6a184cc2 (diff) | |
download | ayatana-indicator-datetime-5b8f9a2bfc21468bc8a91fdc88178f04a25d1ab9.tar.gz ayatana-indicator-datetime-5b8f9a2bfc21468bc8a91fdc88178f04a25d1ab9.tar.bz2 ayatana-indicator-datetime-5b8f9a2bfc21468bc8a91fdc88178f04a25d1ab9.zip |
Merge branch 'tari01-pr/fix-list-conversion'
Attributes GH PR #91: https://github.com/AyatanaIndicators/ayatana-indicator-datetime/pull/91
-rw-r--r-- | CMakeLists.txt | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index ff8c892..061bd36 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -84,8 +84,8 @@ if (ENABLE_LOMIRI_FEATURES) pkg_get_variable(ALARM_DEFAULT_SOUND lomiri-sounds alarm_default_sound) pkg_get_variable(CALENDAR_DEFAULT_SOUND lomiri-sounds calendar_default_sound) - string(REPLACE ";" " " ALARM_DEFAULT_SOUND "${ALARM_DEFAULT_SOUND}") - string(REPLACE ";" " " ALARM_DEFAULT_SOUND "${ALARM_DEFAULT_SOUND}") + string(JOIN " " ALARM_DEFAULT_SOUND ${ALARM_DEFAULT_SOUND}) + string(JOIN " " CALENDAR_DEFAULT_SOUND ${CALENDAR_DEFAULT_SOUND}) add_definitions ( -DLOMIRI_FEATURES_ENABLED |