aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMike Gabriel <mike.gabriel@das-netzwerkteam.de>2021-12-15 14:31:37 +0100
committerMike Gabriel <mike.gabriel@das-netzwerkteam.de>2021-12-15 14:31:37 +0100
commit6c32528d631e7a002a8a4f0a4574a662079c0b0f (patch)
tree9426d73d2c213577d61e43c3dda4a7dd58174af7
parent29177a2a8ae1c59bb0be9dc330acb24ef91e4dd5 (diff)
parent856547c6003b14ff0ea472a71b6d74f2fc9a5004 (diff)
downloadayatana-indicator-display-6c32528d631e7a002a8a4f0a4574a662079c0b0f.tar.gz
ayatana-indicator-display-6c32528d631e7a002a8a4f0a4574a662079c0b0f.tar.bz2
ayatana-indicator-display-6c32528d631e7a002a8a4f0a4574a662079c0b0f.zip
Merge branch 'tari01-pr/build-libayatana-common-with-enable-lomiri-features'
Attributes GH PR #41: https://github.com/AyatanaIndicators/ayatana-indicator-display/pull/41
-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 -