From: Uwe Hermann Date: Sat, 2 May 2020 18:50:40 +0000 (+0200) Subject: sigrok-native-macosx: Fix a Python finding issue. X-Git-Url: https://sigrok.org/gitweb/?p=sigrok-util.git;a=commitdiff_plain;h=db6a2f15d87943d5c3f1986cf869970130e49e4c sigrok-native-macosx: Fix a Python finding issue. --- diff --git a/cross-compile/macosx/create_dmg b/cross-compile/macosx/create_dmg index fd36a27..93acf04 100755 --- a/cross-compile/macosx/create_dmg +++ b/cross-compile/macosx/create_dmg @@ -37,7 +37,7 @@ QTTRANSLATIONSDIR=`brew --prefix $QTVER`/translations BOOSTLIBDIR=`brew list boost | grep libboost_system | grep -v cmake | head -n 1 | xargs dirname` # Path to Python 3 framework. -PYTHONFRAMEWORKDIR=`brew list python3 | grep Python.framework | head -n 1 | xargs dirname`/../../../.. +PYTHONFRAMEWORKDIR=`brew list python3 | grep libpython | head -n 1 | xargs dirname`/../../../.. PYVER="3.7"