MACOS: Add default path when looking for Sparkle framework
This commit is contained in:
parent
1e67c0dd98
commit
6ab0ce1b02
1 changed files with 4 additions and 3 deletions
7
configure
vendored
7
configure
vendored
|
@ -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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue