Skip to content

Commit

Permalink
Fix release workflow.
Browse files Browse the repository at this point in the history
The official homebrew formula for `libssh2` has recently been updated to
depend on `openssl@3` instead of `[email protected]`[1]. This was causing an
compilation error when trying to build `cb` for homebrew distribution.

These changes simply update the `release.yml` file such that our release
process that utitlizes `homebrew` can succeed.

[1] Homebrew/homebrew-core#134264
  • Loading branch information
abrightwell committed Aug 19, 2023
1 parent 1e9c64c commit 15d0552
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ ifeq ($(shell [[ "$(TARGET_OS)" == "darwin" && "$(STATIC_LIBS)" != "" ]] && echo
BDWGC_LIB_PATH ?= $(shell pkg-config --libs-only-L bdw-gc | cut -c 3-)
LIBEVENT_LIB_PATH ?= $(shell pkg-config --libs-only-L libevent | cut -c 3-)
LIBPCRE_LIB_PATH ?= $(shell brew --prefix pcre2)/lib
OPENSSL_LIB_PATH ?= $(shell brew --prefix openssl@1.1)/lib
OPENSSL_LIB_PATH ?= $(shell brew --prefix openssl@3)/lib
LIBSSH2_LIB_PATH ?= $(shell brew --prefix libssh2)/lib
export PKG_CONFIG_PATH=$(OPENSSL_LIB_PATH)/pkgconfig

Expand Down

0 comments on commit 15d0552

Please sign in to comment.