diff options
author | Mike Gabriel <mike.gabriel@das-netzwerkteam.de> | 2021-12-15 14:39:15 +0100 |
---|---|---|
committer | Mike Gabriel <mike.gabriel@das-netzwerkteam.de> | 2021-12-15 14:39:15 +0100 |
commit | 35d48d35d0936ece686d1de0d5eee44aed7c0bb3 (patch) | |
tree | 6dd73028e6db9161285e734038d5221db32c7377 | |
parent | 3bf3265996df1b4038fac0b5ff92bf58984c7777 (diff) | |
parent | 8e481a715fd221c9fd14413eaacc515c95886c43 (diff) | |
download | ayatana-indicator-session-35d48d35d0936ece686d1de0d5eee44aed7c0bb3.tar.gz ayatana-indicator-session-35d48d35d0936ece686d1de0d5eee44aed7c0bb3.tar.bz2 ayatana-indicator-session-35d48d35d0936ece686d1de0d5eee44aed7c0bb3.zip |
Merge branch 'tari01-pr/build-libayatana-common-with-enable-lomiri-features'
Attributes GH PR #64: https://github.com/AyatanaIndicators/ayatana-indicator-session/pull/64
-rw-r--r-- | .build.yml | 6 |
1 files changed, 5 insertions, 1 deletions
@@ -97,7 +97,11 @@ before_scripts: - git clone --depth 1 https://github.com/AyatanaIndicators/libayatana-common.git libayatana-common-build - fi - cd libayatana-common-build - - cmake . -DCMAKE_INSTALL_PREFIX=/usr + - if [ ${DISTRO_NAME} == "debian" ]; then + - cmake . -DCMAKE_INSTALL_PREFIX=/usr -DENABLE_LOMIRI_FEATURES=ON + - else + - cmake . -DCMAKE_INSTALL_PREFIX=/usr + - fi - make - make install - cd - |