diff options
author | Lothar Serra Mari | 2019-11-16 15:47:23 +0100 |
---|---|---|
committer | Eugene Sandulenko | 2019-11-17 22:23:04 +0100 |
commit | f204867cdaf9f54565a8aa396e902052c4cc59c5 (patch) | |
tree | 8ef0811f1e86a34d0e662c99ef2121289baeafcf /configure | |
parent | 54583f98effa15416c4725f7bae37f054e772f5c (diff) | |
download | scummvm-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-x | configure | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -5572,6 +5572,7 @@ if test "$_updates" = yes; then if test "$_sparkle" = yes; then echo "Sparkle" else + _updates=no; echo "$_updates" fi else |