diff options
author | Eugene Sandulenko | 2019-10-12 14:27:28 +0200 |
---|---|---|
committer | Eugene Sandulenko | 2019-10-12 14:27:28 +0200 |
commit | 6ab0ce1b02baf12f3a4153d1740c3da6887fe3d1 (patch) | |
tree | fc63089ea60af1c7fce6ac577d275b238ccbed31 /configure | |
parent | 1e67c0dd987e221741f036c7c056cbd6e6c2bc09 (diff) | |
download | scummvm-rg350-6ab0ce1b02baf12f3a4153d1740c3da6887fe3d1.tar.gz scummvm-rg350-6ab0ce1b02baf12f3a4153d1740c3da6887fe3d1.tar.bz2 scummvm-rg350-6ab0ce1b02baf12f3a4153d1740c3da6887fe3d1.zip |
MACOS: Add default path when looking for Sparkle framework
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 7 |
1 files changed, 4 insertions, 3 deletions
@@ -4696,10 +4696,11 @@ case $_host_os in if test "$_updates" = no; then _sparkle=no else - if test ! -z $_sparklepath ; then - SPARKLE_CFLAGS="-F$_sparklepath" - SPARKLE_LIBS="-F$_sparklepath" + if test -z $_sparklepath; then + _sparklepath=/Library/Frameworks fi + SPARKLE_CFLAGS="-F$_sparklepath" + SPARKLE_LIBS="-F$_sparklepath" if test "$_sparkle" = auto ; then _sparkle=no cat > $TMPC << EOF |