From b1181fe12749e653f74285f71edd09dd6fc859ff Mon Sep 17 00:00:00 2001 From: Uwe Hermann Date: Sat, 2 May 2020 17:33:21 +0200 Subject: [PATCH] sigrok-native-macosx: Fix an issue with recent boost versions. --- cross-compile/macosx/create_dmg | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cross-compile/macosx/create_dmg b/cross-compile/macosx/create_dmg index 002927e..fd36a27 100755 --- a/cross-compile/macosx/create_dmg +++ b/cross-compile/macosx/create_dmg @@ -34,7 +34,7 @@ QTBINDIR=`brew list $QTVER | grep bin | head -n 1 | xargs dirname` QTTRANSLATIONSDIR=`brew --prefix $QTVER`/translations # Path to boost libraries. -BOOSTLIBDIR=`brew list boost | grep libboost_system | head -n 1 | xargs dirname` +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`/../../../.. -- 2.30.2