diff options
author | Mike Gabriel <mike.gabriel@das-netzwerkteam.de> | 2021-12-15 14:35:45 +0100 |
---|---|---|
committer | Mike Gabriel <mike.gabriel@das-netzwerkteam.de> | 2021-12-15 14:35:45 +0100 |
commit | 2022bfc52e277437bc7fa0ab74d5a3560daa54e0 (patch) | |
tree | ebfcf9edebab2cbd651db2324c47e06d2520970c | |
parent | a556eb811b15d84e3e9298e8c2ff4b75d9a0a36e (diff) | |
parent | d57e4c8290b93b188bd44d97078718873dc2c4c6 (diff) | |
download | ayatana-indicator-bluetooth-2022bfc52e277437bc7fa0ab74d5a3560daa54e0.tar.gz ayatana-indicator-bluetooth-2022bfc52e277437bc7fa0ab74d5a3560daa54e0.tar.bz2 ayatana-indicator-bluetooth-2022bfc52e277437bc7fa0ab74d5a3560daa54e0.zip |
Merge branch 'tari01-pr/build-libayatana-common-with-enable-lomiri-features'
Attributes GH PR #34: https://github.com/AyatanaIndicators/ayatana-indicator-bluetooth/pull/34
-rw-r--r-- | .build.yml | 6 |
1 files changed, 5 insertions, 1 deletions
@@ -94,7 +94,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 - |