aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMike Gabriel <mike.gabriel@das-netzwerkteam.de>2021-12-15 14:39:15 +0100
committerMike Gabriel <mike.gabriel@das-netzwerkteam.de>2021-12-15 14:39:15 +0100
commit35d48d35d0936ece686d1de0d5eee44aed7c0bb3 (patch)
tree6dd73028e6db9161285e734038d5221db32c7377
parent3bf3265996df1b4038fac0b5ff92bf58984c7777 (diff)
parent8e481a715fd221c9fd14413eaacc515c95886c43 (diff)
downloadayatana-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.yml6
1 files changed, 5 insertions, 1 deletions
diff --git a/.build.yml b/.build.yml
index 73d0684..ef19e0f 100644
--- a/.build.yml
+++ b/.build.yml
@@ -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 -