aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMike Gabriel <mike.gabriel@das-netzwerkteam.de>2021-12-15 14:35:45 +0100
committerMike Gabriel <mike.gabriel@das-netzwerkteam.de>2021-12-15 14:35:45 +0100
commit2022bfc52e277437bc7fa0ab74d5a3560daa54e0 (patch)
treeebfcf9edebab2cbd651db2324c47e06d2520970c
parenta556eb811b15d84e3e9298e8c2ff4b75d9a0a36e (diff)
parentd57e4c8290b93b188bd44d97078718873dc2c4c6 (diff)
downloadayatana-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.yml6
1 files changed, 5 insertions, 1 deletions
diff --git a/.build.yml b/.build.yml
index c7de24e..d4b5dbf 100644
--- a/.build.yml
+++ b/.build.yml
@@ -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 -