aboutsummaryrefslogtreecommitdiff
path: root/configure
diff options
context:
space:
mode:
authorLothar Serra Mari2019-11-16 15:47:23 +0100
committerEugene Sandulenko2019-11-17 22:23:04 +0100
commitf204867cdaf9f54565a8aa396e902052c4cc59c5 (patch)
tree8ef0811f1e86a34d0e662c99ef2121289baeafcf /configure
parent54583f98effa15416c4725f7bae37f054e772f5c (diff)
downloadscummvm-rg350-f204867cdaf9f54565a8aa396e902052c4cc59c5.tar.gz
scummvm-rg350-f204867cdaf9f54565a8aa396e902052c4cc59c5.tar.bz2
scummvm-rg350-f204867cdaf9f54565a8aa396e902052c4cc59c5.zip
BUILD: Disable updates if no Sparkle implementation is available
Currently, --enable-release always enables updates even on unsupported platforms. This additional check disables updates entirely if no proper sparkle implementation is found. Fixes #11217.
Diffstat (limited to 'configure')
-rwxr-xr-xconfigure1
1 files changed, 1 insertions, 0 deletions
diff --git a/configure b/configure
index 146c4247f3..b4bffeb70c 100755
--- a/configure
+++ b/configure
@@ -5572,6 +5572,7 @@ if test "$_updates" = yes; then
if test "$_sparkle" = yes; then
echo "Sparkle"
else
+ _updates=no;
echo "$_updates"
fi
else