Add other openssl path to PKG_CONFIG_PATH (#43041)
authorAlexander Köplinger <alex.koeplinger@outlook.com>
Mon, 5 Oct 2020 18:21:27 +0000 (20:21 +0200)
committerGitHub <noreply@github.com>
Mon, 5 Oct 2020 18:21:27 +0000 (20:21 +0200)
Follow-up to https://github.com/dotnet/runtime/pull/43037#discussion_r499726268

eng/native/build-commons.sh

index dc1641f..4438fab 100755 (executable)
@@ -55,7 +55,7 @@ check_prereqs()
         if ! pkg-config openssl ; then
             # We export the proper PKG_CONFIG_PATH where openssl was installed by Homebrew
             # It's important to _export_ it since build-commons.sh is sourced by other scripts such as build-native.sh
-            export PKG_CONFIG_PATH=/usr/local/opt/openssl@1.1/lib/pkgconfig
+            export PKG_CONFIG_PATH=/usr/local/opt/openssl@1.1/lib/pkgconfig:/usr/local/opt/openssl/lib/pkgconfig
             # We try again with the PKG_CONFIG_PATH in place, if pkg-config still can't find OpenSSL, exit with an error, cmake won't find OpenSSL either
             pkg-config openssl || { echo >&2 "Please install openssl before running this script, see https://github.com/dotnet/runtime/blob/master/docs/workflow/requirements/macos-requirements.md"; exit 1; }
         fi