From 6ab0ce1b02baf12f3a4153d1740c3da6887fe3d1 Mon Sep 17 00:00:00 2001 From: Eugene Sandulenko Date: Sat, 12 Oct 2019 14:27:28 +0200 Subject: MACOS: Add default path when looking for Sparkle framework --- configure | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) (limited to 'configure') diff --git a/configure b/configure index 86d80c40c4..b5c4271f1a 100755 --- a/configure +++ b/configure @@ -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 -- cgit v1.2.3