aboutsummaryrefslogtreecommitdiff
path: root/.build.yml
diff options
context:
space:
mode:
Diffstat (limited to '.build.yml')
-rw-r--r--.build.yml6
1 files changed, 5 insertions, 1 deletions
diff --git a/.build.yml b/.build.yml
index 47d88bf..133fb10 100644
--- a/.build.yml
+++ b/.build.yml
@@ -130,7 +130,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 -