diff options
author | Christian Lohmaier <lohmaier+LibreOffice@googlemail.com> | 2022-07-13 14:10:55 +0200 |
---|---|---|
committer | Christian Lohmaier <lohmaier+LibreOffice@googlemail.com> | 2022-07-15 20:21:29 +0200 |
commit | 2632f2ddaef1eff71060c7789b2888d068b72970 (patch) | |
tree | 8ba9d300106e709cb9be97abe0379c99fff9e874 | |
parent | 70334c419caab17870ab560632cfc5e90843d584 (diff) |
fix bluetooth entitlement, was added to the flipped condition
of course it should only be added when the bluetooth part of the
sdremote is enabled, not the other way round...
fixes c78b49ec132eb5126445ebee7d259d3df7fcaa68
Change-Id: I0085c61a4bafece80be92c56928095c2726e11b4
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/137025
Tested-by: Jenkins
Reviewed-by: Christian Lohmaier <lohmaier+LibreOffice@googlemail.com>
(cherry picked from commit bdd97cb83e09225905a6272caf91579a0a77d3c2)
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/137054
Reviewed-by: Adolfo Jayme Barrientos <fitojb@ubuntu.com>
Tested-by: Christian Lohmaier <lohmaier+LibreOffice@googlemail.com>
(cherry picked from commit 9a2a837ae6ac35ec098359aa1c09590c7ccda69f)
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/137058
Reviewed-by: Michael Stahl <michael.stahl@allotropia.de>
Reviewed-by: Xisco Fauli <xiscofauli@libreoffice.org>
-rw-r--r-- | configure.ac | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/configure.ac b/configure.ac index 14eeccf14117..374a87e782b1 100644 --- a/configure.ac +++ b/configure.ac @@ -11870,14 +11870,14 @@ if test -n "$enable_sdremote" -a "$enable_sdremote" != "no"; then AC_MSG_RESULT([yes]) ENABLE_SDREMOTE_BLUETOOTH=TRUE SYSTEM_BLUEZ= + SDREMOTE_ENTITLEMENT="$SDREMOTE_ENTITLEMENT + <key>com.apple.security.device.bluetooth</key> + <true/>" fi else AC_MSG_RESULT([no]) ENABLE_SDREMOTE_BLUETOOTH= SYSTEM_BLUEZ= - SDREMOTE_ENTITLEMENT="$SDREMOTE_ENTITLEMENT - <key>com.apple.security.device.bluetooth</key> - <true/>" fi else ENABLE_SDREMOTE= |