From 89de8f012e8f62144cecd6c54ad9a66beca825d8 Mon Sep 17 00:00:00 2001 From: Uwe Hermann Date: Sun, 1 Feb 2015 00:20:32 +0100 Subject: [PATCH] sigrok-native-macosx: Use /usr/local/opt paths. Avoid too specific Homebrew paths. The /usr/local/opt/ path is a symlink to the respective /usr/local/Cellar path for Homebrew. --- cross-compile/macosx/sigrok-native-macosx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/cross-compile/macosx/sigrok-native-macosx b/cross-compile/macosx/sigrok-native-macosx index d69f048..9c78fc0 100755 --- a/cross-compile/macosx/sigrok-native-macosx +++ b/cross-compile/macosx/sigrok-native-macosx @@ -49,8 +49,8 @@ export PATH="/usr/local/opt/qt52/bin:$PATH" # Qt5 # Path to Python 2/3 pkg-config files. # In Homebrew, pkg-config files of "keg-only" formulas (Python is one of them) # aren't installed into /usr/local/lib/pkgconfig (we manually reference them). -PY2="/usr/local/Cellar/python/2.7.8_2/Frameworks/Python.framework/Versions/2.7/lib/pkgconfig" -PY3="/usr/local/Cellar/python3/3.4.2_1/Frameworks/Python.framework/Versions/3.4/lib/pkgconfig" +PY2="/usr/local/opt/python/Frameworks/Python.framework/Versions/2.7/lib/pkgconfig" +PY3="/usr/local/opt/python3/Frameworks/Python.framework/Versions/3.4/lib/pkgconfig" # You usually don't need to change anything below this line. -- 2.30.2