Skip to content

Commit

Permalink
Ensure openssl 1.1 engines get signed under macos
Browse files Browse the repository at this point in the history
Signed-off-by: Marc A. Paradise <marc.paradise@gmail.com>
  • Loading branch information
marcparadise committed Feb 11, 2021
1 parent a018c22 commit 386fc8c
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion config/software/openssl.rb
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,8 @@

# Openssl builds engines as libraries into a special directory. We need to include
# that directory in lib_dirs so omnibus can sign them during macOS deep signing.
lib_dirs lib_dirs.concat ["#{install_dir}/embedded/lib/engines"]
lib_dirs << "#{install_dir}/embedded/lib/engines"
lib_dirs << "#{install_dir}/embedded/lib/engines-1.1" if version.start_with?("1.1")

# OpenSSL source ships with broken symlinks which windows doesn't allow.
# So skip error checking with `extract: :lax_tar`
Expand Down

0 comments on commit 386fc8c

Please sign in to comment.