From 8e468f377a66e40ea265b7732addefd29a080746 Mon Sep 17 00:00:00 2001 From: Paul Zabelin Date: Thu, 10 Sep 2020 06:27:55 -0700 Subject: [PATCH] fix: brew --prefix openblas reports different location depending if openblas is installed --- Example/OpenCV-OSX-Tests/install-opencv.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Example/OpenCV-OSX-Tests/install-opencv.sh b/Example/OpenCV-OSX-Tests/install-opencv.sh index fc2743b..2fc6c70 100755 --- a/Example/OpenCV-OSX-Tests/install-opencv.sh +++ b/Example/OpenCV-OSX-Tests/install-opencv.sh @@ -12,4 +12,4 @@ done # due to Warning: Refusing to link macOS-provided software: openblas # link /usr/local/opt/openblas is not getting restored cellar=$(brew --prefix)/Cellar/openblas -ln -s $cellar/`ls $cellar` $(brew --prefix openblas) || true +ln -s $cellar/`ls $cellar` $(brew --prefix)/opt/openblas || true