diff options
author | Robert Tari <robert@tari.in> | 2021-12-06 11:41:52 +0100 |
---|---|---|
committer | Robert Tari <robert@tari.in> | 2021-12-10 11:07:10 +0100 |
commit | 856547c6003b14ff0ea472a71b6d74f2fc9a5004 (patch) | |
tree | 9426d73d2c213577d61e43c3dda4a7dd58174af7 | |
parent | 29177a2a8ae1c59bb0be9dc330acb24ef91e4dd5 (diff) | |
download | ayatana-indicator-display-856547c6003b14ff0ea472a71b6d74f2fc9a5004.tar.gz ayatana-indicator-display-856547c6003b14ff0ea472a71b6d74f2fc9a5004.tar.bz2 ayatana-indicator-display-856547c6003b14ff0ea472a71b6d74f2fc9a5004.zip |
.build.yml: Build libayatana-common with ENABLE_LOMIRI_FEATURES
-rw-r--r-- | .build.yml | 6 |
1 files changed, 5 insertions, 1 deletions
@@ -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 - |